Commit 7f168f9c authored by Rob Pike's avatar Rob Pike

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
parent 5b2f6261
...@@ -2953,7 +2953,7 @@ func handle(r *Request) { ...@@ -2953,7 +2953,7 @@ func handle(r *Request) {
} }
func init() { func init() {
for i := 0; i < MaxOutstanding; i++ { for i := 0; i &lt; MaxOutstanding; i++ {
sem &lt;- 1 sem &lt;- 1
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment