From: Shenghou Ma Date: Tue, 23 Apr 2013 19:51:31 +0000 (+0800) Subject: doc/effective_go.html: fix syntax error in code example X-Git-Tag: go1.1rc2~58 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ed19ab47c358c53d62bf108dfa0955367d40535c;p=gostls13.git doc/effective_go.html: fix syntax error in code example Fixes #5333. R=golang-dev, adg CC=golang-dev https://golang.org/cl/8698046 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index 62851871c5..e546c083b6 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -2947,7 +2947,7 @@ func Serve(queue chan *Request) { go func() { process(req) sem <- 1 - } + }() } }