mirror of
https://github.com/golang/go
synced 2024-11-21 20:04:44 -07:00
Fix a doc typo.
R=rsc APPROVED=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=30967 CL=30990
This commit is contained in:
parent
55e790a160
commit
25706fec19
@ -360,7 +360,7 @@ out a data structure.
|
||||
<h3 id="buffer-slice">Use parallel assignment to slice a buffer</h3>
|
||||
|
||||
<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>
|
||||
|
||||
<h2 id="control-flow">Control Flow</h2>
|
||||
|
Loading…
Reference in New Issue
Block a user