mirror of
https://github.com/golang/go
synced 2024-11-21 16:04:45 -07:00
doc: fix codewalk/markov.go
When I build it, I got: /home/njubee/work/golang/doc/codewalk/markov.go:124: undefined: time.Nanoseconds time.Nanoseconds() does not exist now, use time.Now().UnixNano() instead R=golang-dev, adg CC=golang-dev https://golang.org/cl/5668044
This commit is contained in:
parent
4853cb9ab0
commit
932cdfbc4c
@ -120,8 +120,8 @@ func main() {
|
|||||||
numWords := flag.Int("words", 100, "maximum number of words to print")
|
numWords := flag.Int("words", 100, "maximum number of words to print")
|
||||||
prefixLen := flag.Int("prefix", 2, "prefix length in words")
|
prefixLen := flag.Int("prefix", 2, "prefix length in words")
|
||||||
|
|
||||||
flag.Parse() // Parse command-line flags.
|
flag.Parse() // Parse command-line flags.
|
||||||
rand.Seed(time.Nanoseconds()) // Seed the random number generator.
|
rand.Seed(time.Now().UnixNano()) // Seed the random number generator.
|
||||||
|
|
||||||
c := NewChain(*prefixLen) // Initialize a new Chain.
|
c := NewChain(*prefixLen) // Initialize a new Chain.
|
||||||
c.Build(os.Stdin) // Build chains from standard input.
|
c.Build(os.Stdin) // Build chains from standard input.
|
||||||
|
Loading…
Reference in New Issue
Block a user