Commit 2cf9dae1 authored by Rob Pike's avatar Rob Pike

drop a couple of semicolons for consistency

R=rsc
DELTA=4  (0 added, 0 deleted, 4 changed)
OCL=35983
CL=35983
parent c6e904d5
...@@ -1369,7 +1369,7 @@ func (b ByteSize) String() string { ...@@ -1369,7 +1369,7 @@ func (b ByteSize) String() string {
case s >= KB: case s >= KB:
return fmt.Sprintf("%.2fKB", b/KB) return fmt.Sprintf("%.2fKB", b/KB)
} }
return fmt.Sprintf("%.2fB", b); return fmt.Sprintf("%.2fB", b)
} }
</pre> </pre>
<p> <p>
...@@ -1422,7 +1422,7 @@ func init() { ...@@ -1422,7 +1422,7 @@ func init() {
GOROOT = HOME + "/go" GOROOT = HOME + "/go"
} }
// GOROOT may be overridden by --goroot flag on command line. // GOROOT may be overridden by --goroot flag on command line.
flag.StringVar(&amp;GOROOT, "goroot", GOROOT, "Go root directory"); flag.StringVar(&amp;GOROOT, "goroot", GOROOT, "Go root directory")
} }
</pre> </pre>
......
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