add missing semicolons in example

R=rsc
DELTA=5  (0 added, 0 deleted, 5 changed)
OCL=29475
CL=29478
This commit is contained in:
Rob Pike 2009-05-27 18:31:28 -07:00
parent 5e53270a6c
commit c4a74b0b4a

View File

@ -3270,14 +3270,14 @@ and the variables are initialized once before the statement is entered.
<pre> <pre>
switch tag { switch tag {
default: s3() default: s3();
case 0, 1, 2, 3: s1() case 0, 1, 2, 3: s1();
case 4, 5, 6, 7: s2() case 4, 5, 6, 7: s2();
} }
switch x := f(); { switch x := f(); {
case x &lt; 0: return -x case x &lt; 0: return -x;
default: return x default: return x;
} }
switch { // missing expression means "true" switch { // missing expression means "true"