From: David Symonds Date: Sat, 8 Dec 2012 08:20:38 +0000 (+1100) Subject: math/rand: fix typo in example comment. X-Git-Tag: go1.1rc2~1693 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ec4595267085d132b63050e2cfac085a981f3cee;p=gostls13.git math/rand: fix typo in example comment. R=golang-dev, iant CC=golang-dev https://golang.org/cl/6901056 --- diff --git a/src/pkg/math/rand/example_test.go b/src/pkg/math/rand/example_test.go index 997385c016..4fe207d85e 100644 --- a/src/pkg/math/rand/example_test.go +++ b/src/pkg/math/rand/example_test.go @@ -40,7 +40,7 @@ func Example() { show("NormFloat64", r.NormFloat64(), r.NormFloat64(), r.NormFloat64()) // Int31, Int63, and Uint32 generate values of the given width. - // The Int method (not shown) is like either Int31 or Int64 + // The Int method (not shown) is like either Int31 or Int63 // depending on the size of 'int'. show("Int31", r.Int31(), r.Int31(), r.Int31()) show("Int63", r.Int63(), r.Int63(), r.Int63())