We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ac068 commit a3a975bCopy full SHA for a3a975b
go/not-so-random.md
@@ -3,10 +3,10 @@
3
Go's `rand` package makes it easy to generate all sorts of pseudo-random numbers.
4
5
What they don't tell you though is that the default seed is `1`. They [do
6
-tell you that the numbers are pseudo-random and that you need to use the Seed
7
-function to initialize the default source if different behavior is required
8
-for each run](https://golang.org/pkg/math/rand/), though. So if you write a
9
-program like so:
+tell you that the numbers are pseudo-random and that you need to use the
+`Seed` function to initialize the default source if different behavior is
+required for each run](https://golang.org/pkg/math/rand/), though. So if you
+write a program like so:
10
11
```go
12
package main
0 commit comments