From: Rob Pike Date: Thu, 22 Oct 2009 06:05:56 +0000 (-0700) Subject: drop a couple of semicolons for consistency X-Git-Tag: weekly.2009-11-06~234 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2cf9dae134631e4fa24003b225356d9a82ed7c60;p=gostls13.git drop a couple of semicolons for consistency R=rsc DELTA=4 (0 added, 0 deleted, 4 changed) OCL=35983 CL=35983 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index 0fad624263..05ac223681 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -1369,7 +1369,7 @@ func (b ByteSize) String() string { case s >= KB: return fmt.Sprintf("%.2fKB", b/KB) } - return fmt.Sprintf("%.2fB", b); + return fmt.Sprintf("%.2fB", b) }

@@ -1422,7 +1422,7 @@ func init() { GOROOT = HOME + "/go" } // GOROOT may be overridden by --goroot flag on command line. - flag.StringVar(&GOROOT, "goroot", GOROOT, "Go root directory"); + flag.StringVar(&GOROOT, "goroot", GOROOT, "Go root directory") }