diff --git a/doc/effective_go.html b/doc/effective_go.html index ba36a43fe2..684f108de9 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -943,7 +943,7 @@ These examples illustrate the difference between new() and
 var p *[]int = new([]int)       // allocates slice structure; *p == nil; rarely useful
-var v  []int = make([]int, 100) // v now refers to a new array of 100 ints
+var v  []int = make([]int, 100) // the slice v now refers to a new array of 100 ints
 
 // Unnecessarily complex:
 var p *[]int = new([]int)