1
0
mirror of https://github.com/golang/go synced 2024-09-24 15:20:16 -06:00

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
This commit is contained in:
Rob Pike 2013-10-11 16:39:40 -07:00
parent 5b2f626159
commit 7f168f9ccf

View 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
}
}