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") }