1
0
mirror of https://github.com/golang/go synced 2024-11-24 21:10:04 -07:00

sync: fix example code

Fixes #1631.

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/4303046
This commit is contained in:
Andrew Gerrand 2011-03-23 14:24:30 +11:00
parent a73817716a
commit 39ffd546bd

View File

@ -22,7 +22,7 @@ import "runtime"
// go func() {
// // Do something.
// wg.Done()
// }
// }()
// }
// wg.Wait()
//