From 7f168f9ccf716183ea849f6d86250aecd5d4d0b4 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Fri, 11 Oct 2013 16:39:40 -0700 Subject: [PATCH] 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 --- 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 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 } } -- 2.50.0