From: Christopher Wedgwood Date: Thu, 19 Aug 2010 00:03:58 +0000 (+1000) Subject: doc: add missing paren (pointed out by nbjoerg) X-Git-Tag: weekly.2010-08-25~33 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c80746aa900749672c44dfc88d4cc2b1090b3066;p=gostls13.git doc: add missing paren (pointed out by nbjoerg) R=rsc, r CC=golang-dev https://golang.org/cl/1983045 --- diff --git a/doc/effective_go.html b/doc/effective_go.html index 41a7b8af93..9e769aba47 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -2603,7 +2603,7 @@ func CubeRoot(x float64) float64 { } } // A million iterations has not converged; something is wrong. - panic(fmt.Sprintf("CubeRoot(%g) did not converge", x) + panic(fmt.Sprintf("CubeRoot(%g) did not converge", x)) }