1
0
mirror of https://github.com/golang/go synced 2024-11-21 20:44:39 -07:00

fix unqouted &

R=gri
OCL=26158
CL=26158
This commit is contained in:
Rob Pike 2009-03-11 22:02:18 -07:00
parent cd04ec95ea
commit 0282719387

View File

@ -3023,7 +3023,7 @@ x = 1
*p = f()
a[i] = 23
k = <-ch
i &^= (1<<n)
i &^= (1&lt;&lt;n)
</pre>
<p>