]> Cypherpunks repositories - gostls13.git/commitdiff
doc/effective_go.html: fix unescaped less-than character
authorRob Pike <r@golang.org>
Fri, 11 Oct 2013 23:39:40 +0000 (16:39 -0700)
committerRob Pike <r@golang.org>
Fri, 11 Oct 2013 23:39:40 +0000 (16:39 -0700)
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

index 9d002c504361bcd12a21be489b17c036b31f6baa..30c015aea1c820e36f917bdc0013f59e6396735b 100644 (file)
@@ -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
     }
 }