Commit 4b06d9d7 authored by Andrew Bonventre's avatar Andrew Bonventre Committed by Filippo Valsorda

doc: remove non-prime from list of primes in spec

Fixes golang/go#24451

Change-Id: Id9b4cbd1a1ff032f1cc4606e9734ddcc64892ae5
Reviewed-on: https://go-review.googlesource.com/101457Reviewed-by: 's avatarFilippo Valsorda <filippo@golang.org>
parent 168cc7ff
......@@ -2494,7 +2494,7 @@ Examples of valid array, slice, and map literals:
<pre>
// list of prime numbers
primes := []int{2, 3, 5, 7, 9, 2147483647}
primes := []int{2, 3, 5, 7, 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}
......
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