From 2cf9dae134631e4fa24003b225356d9a82ed7c60 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Wed, 21 Oct 2009 23:05:56 -0700 Subject: [PATCH] drop a couple of semicolons for consistency R=rsc DELTA=4 (0 added, 0 deleted, 4 changed) OCL=35983 CL=35983 --- doc/effective_go.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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") } -- 2.48.1