Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: #5 #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/effective_go.html
Original file line number Diff line number Diff line change
Expand Up @@ -5641,7 +5641,7 @@ <h3 id="Go程">Go程</h3>
<p>
我们称之为<b>Go程</b>是因为现有的术语—线程、协程、进程等等—无法准确传达它的含义。
Go程具有简单的模型:它是与其它Go程并发运行在同一地址空间的函数。它是轻量级的,
所有小号几乎就只有栈空间的分配。而且栈最开始是非常小的,所以它们很廉价,
所有消耗几乎就只有栈空间的分配。而且栈最开始是非常小的,所以它们很廉价,
仅在需要时才会随着堆空间的分配(和释放)而变化。
</p>

Expand Down Expand Up @@ -5724,7 +5724,7 @@ <h3 id="Go程">Go程</h3>
</div>

<p>
在Go中,函数字面都是闭包:其实现在保证了函数内引用变量的生命周期与函数的活动时间相同
在Go中,函数字面都是闭包:其实现保证了函数内引用变量的生命周期与函数的活动时间相同
</p>

<div class="english">
Expand Down