From: Andrew Bonventre Date: Mon, 19 Mar 2018 21:50:42 +0000 (+0000) Subject: Revert "doc: remove non-prime from list of primes in spec" X-Git-Tag: go1.11beta1~1164 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7974f0815e071448cd429d7c30c1d6c24b04a589;p=gostls13.git Revert "doc: remove non-prime from list of primes in spec" This reverts commit 4b06d9d72747b0407e2cd9a423b689c7e9c8e92d. Reason for revert: It's a reference to a legendary article from the Journal of Irreproducible Results. Updates golang/go#24451 Change-Id: I0288177f4e286bd6ace5774f2e5e0acb02370305 Reviewed-on: https://go-review.googlesource.com/101495 Reviewed-by: Andrew Bonventre --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 14b5f352d6..dbd2307e29 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}