diff --git a/doc/effective_go.html b/doc/effective_go.html index 30c015aea1..f9199511a3 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -795,6 +795,7 @@ This example shows both uses.
 Loop:
 	for n := 0; n < len(src); n += size {
+		switch {
 		case src[n] < sizeOne:
 			if validateOnly {
 				break