From: Rob Pike Date: Fri, 29 May 2009 22:46:03 +0000 (-0700) Subject: Automated g4 rollback of changelist 29478. X-Git-Tag: weekly.2009-11-06~1508 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=65ec16b637b5d37dece0395c485cf82c175917ff;p=gostls13.git Automated g4 rollback of changelist 29478. *** Reason for rollback *** these semicolons are necessary only because of a bug in 6g *** Original change description *** add missing semicolons in example TBR=gri OCL=29624 CL=29624 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 78be5584b3..48672024bc 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -3270,14 +3270,14 @@ and the variables are initialized once before the statement is entered.
 switch tag {
-default: s3();
-case 0, 1, 2, 3: s1();
-case 4, 5, 6, 7: s2();
+default: s3()
+case 0, 1, 2, 3: s1()
+case 4, 5, 6, 7: s2()
 }
 
 switch x := f(); {
-case x < 0: return -x;
-default: return x;
+case x < 0: return -x
+default: return x
 }
 
 switch {          // missing expression means "true"