diff --git a/go/not-so-random.md b/go/not-so-random.md index b9af368..d0c8a83 100644 --- a/go/not-so-random.md +++ b/go/not-so-random.md @@ -3,10 +3,10 @@ Go's `rand` package makes it easy to generate all sorts of pseudo-random numbers. What they don't tell you though is that the default seed is `1`. They [do -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: +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: ```go package main