From ed19ab47c358c53d62bf108dfa0955367d40535c Mon Sep 17 00:00:00 2001 From: Shenghou Ma Date: Wed, 24 Apr 2013 03:51:31 +0800 Subject: [PATCH] doc/effective_go.html: fix syntax error in code example Fixes #5333. R=golang-dev, adg CC=golang-dev https://golang.org/cl/8698046 --- doc/effective_go.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 - } + }() } } -- 2.48.1