diff --git a/doc/effective_go.html b/doc/effective_go.html index 296939e0dfd..ab109280f6e 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -2730,7 +2730,7 @@ suppresses the usual check for a return statement.
 // A toy implementation of cube root using Newton's method.
 func CubeRoot(x float64) float64 {
-    z := x/3   // Arbitrary intitial value
+    z := x/3   // Arbitrary initial value
     for i := 0; i < 1e6; i++ {
         prevz := z
         z -= (z*z*z-x) / (3*z*z)