Commit 25706fec authored by David Symonds's avatar David Symonds

Fix a doc typo.

R=rsc
APPROVED=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=30967
CL=30990
parent 55e790a1
...@@ -360,7 +360,7 @@ out a data structure. ...@@ -360,7 +360,7 @@ out a data structure.
<h3 id="buffer-slice">Use parallel assignment to slice a buffer</h3> <h3 id="buffer-slice">Use parallel assignment to slice a buffer</h3>
<pre> <pre>
hdr, body, checksum := buf[0:20], buf[20:len(buf)], buf[len(buf)-4:len(buf)]; hdr, body, checksum := buf[0:20], buf[20:len(buf)-4], buf[len(buf)-4:len(buf)];
</pre> </pre>
<h2 id="control-flow">Control Flow</h2> <h2 id="control-flow">Control Flow</h2>
......
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