Merge pull request #96 from skrul/fix-rand-comment

Fix comment on rand example.
This commit is contained in:
Mark McGranaghan 2015-02-24 19:10:50 -08:00
commit de90934138

View File

@ -30,7 +30,7 @@ func main() {
s1 := rand.NewSource(42)
r1 := rand.New(s1)
// Call the resulting `rand.Source` just like the
// Call the resulting `rand.Rand` just like the
// functions on the `rand` package.
fmt.Print(r1.Intn(100), ",")
fmt.Print(r1.Intn(100))