From: Christopher Wedgwood Date: Fri, 3 Feb 2012 23:34:31 +0000 (+1100) Subject: spec: correct primes X-Git-Tag: weekly.2012-02-07~82 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6513e195324f53c25cad08072f5537189a37443d;p=gostls13.git spec: correct primes R=r CC=golang-dev https://golang.org/cl/5627048 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 2dec4c0b70..a546fdc672 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -2143,7 +2143,7 @@ Examples of valid array, slice, and map literals:
 // list of prime numbers
-primes := []int{2, 3, 5, 7, 9, 11, 13, 17, 19, 991, 1174250539803415390440702411831137627109439}
+primes := []int{2, 3, 5, 7, 9, 11, 13, 17, 19, 991, 1174250539803415390440702411831137627109479}
 
 // vowels[ch] is true if ch is a vowel
 vowels := [128]bool{'a': true, 'e': true, 'i': true, 'o': true, 'u': true, 'y': true}