Skip to content

Commit 5d722ee

Browse files
committed
fix: Go-zh#5
1 parent d4e8cec commit 5d722ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/effective_go.html

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

@@ -5724,7 +5724,7 @@ <h3 id="Go程">Go程</h3>
57245724
</div>
57255725

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

57305730
<div class="english">

0 commit comments

Comments
 (0)