diff --git a/doc/go_spec.html b/doc/go_spec.html index 14b5f352d69..dbd2307e29a 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -2494,7 +2494,7 @@ Examples of valid array, slice, and map literals:
// list of prime numbers -primes := []int{2, 3, 5, 7, 2147483647} +primes := []int{2, 3, 5, 7, 9, 2147483647} // vowels[ch] is true if ch is a vowel vowels := [128]bool{'a': true, 'e': true, 'i': true, 'o': true, 'u': true, 'y': true}