From c80746aa900749672c44dfc88d4cc2b1090b3066 Mon Sep 17 00:00:00 2001 From: Christopher Wedgwood Date: Thu, 19 Aug 2010 10:03:58 +1000 Subject: [PATCH] doc: add missing paren (pointed out by nbjoerg) R=rsc, r CC=golang-dev https://golang.org/cl/1983045 --- doc/effective_go.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/effective_go.html b/doc/effective_go.html index 41a7b8af93e..9e769aba47c 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)) }