Skip to content

Commit

Permalink
fix markdown italic
Browse files Browse the repository at this point in the history
Signed-off-by: Yixing Yan <[email protected]>
  • Loading branch information
yanyixing authored and everyx committed Oct 7, 2022
1 parent 7c6d321 commit 0f4c701
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/waitgroups/waitgroups.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 想要等待多个协程完成,我们可以使用 *wait group*。
// 想要等待多个协程完成,我们可以使用 *wait group*

package main

Expand All @@ -20,7 +20,7 @@ func worker(id int) {
func main() {

// 这个 WaitGroup 用于等待这里启动的所有协程完成。
// 注意:如果 WaitGroup 显式传递到函数中,则应使用 *指针*。
// 注意:如果 WaitGroup 显式传递到函数中,则应使用 *指针*
var wg sync.WaitGroup

// 启动几个协程,并为其递增 WaitGroup 的计数器。
Expand Down

0 comments on commit 0f4c701

Please sign in to comment.