Skip to content

Commit a3a975b

Browse files
committed
Use an inline code block for function name
1 parent 48ac068 commit a3a975b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

go/not-so-random.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
Go's `rand` package makes it easy to generate all sorts of pseudo-random numbers.
44

55
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:
6+
tell you that the numbers are pseudo-random and that you need to use the
7+
`Seed` function to initialize the default source if different behavior is
8+
required for each run](https://golang.org/pkg/math/rand/), though. So if you
9+
write a program like so:
1010

1111
```go
1212
package main

0 commit comments

Comments
 (0)