From 48ac0689d6ec1adb0bc9e4d8bab89f96bfd8e030 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sun, 14 Feb 2016 14:02:27 -0600 Subject: [PATCH] Fix a typo: pseud -> pseudo --- go/not-so-random.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/go/not-so-random.md b/go/not-so-random.md index dd66f74..b9af368 100644 --- a/go/not-so-random.md +++ b/go/not-so-random.md @@ -2,7 +2,11 @@ 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 pseud-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: +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: ```go package main