Commit c80746aa authored by Christopher Wedgwood's avatar Christopher Wedgwood Committed by Rob Pike

doc: add missing paren (pointed out by nbjoerg)

R=rsc, r
CC=golang-dev
https://golang.org/cl/1983045
parent ca9098ee
......@@ -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))
}
</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