aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2013-10-11 16:39:40 -0700
committerRob Pike <r@golang.org>2013-10-11 16:39:40 -0700
commit7f168f9ccf716183ea849f6d86250aecd5d4d0b4 (patch)
treeaa5306efc2f78f5cf13dde2764ad44b631881549
parent5b2f62615970532374c9bd1b48dfe7f7ffef217a (diff)
downloadgo-7f168f9ccf716183ea849f6d86250aecd5d4d0b4.tar.gz
go-7f168f9ccf716183ea849f6d86250aecd5d4d0b4.zip
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
-rw-r--r--doc/effective_go.html2
1 files changed, 1 insertions, 1 deletions
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 &lt; MaxOutstanding; i++ {
sem &lt;- 1
}
}