From: Rob Pike Date: Fri, 11 Oct 2013 23:39:40 +0000 (-0700) Subject: doc/effective_go.html: fix unescaped less-than character X-Git-Tag: go1.2rc2~29 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7f168f9ccf716183ea849f6d86250aecd5d4d0b4;p=gostls13.git doc/effective_go.html: fix unescaped less-than character Why doesn't tidy complain about these? Found by manlio.perillo. Fixes #6571 R=golang-dev, adg CC=golang-dev https://golang.org/cl/14608044 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index 9d002c5043..30c015aea1 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -2953,7 +2953,7 @@ func handle(r *Request) { } func init() { - for i := 0; i < MaxOutstanding; i++ { + for i := 0; i < MaxOutstanding; i++ { sem <- 1 } }