1
0
mirror of https://github.com/golang/go synced 2024-11-27 00:11:19 -07:00

doc/play: update obsolete comment in peano.go.

Change-Id: Ibecc2ef1e70c927c325c48bc381091f52c09da85
Reviewed-on: https://go-review.googlesource.com/1355
Reviewed-by: Russ Cox <rsc@golang.org>
Reviewed-by: Minux Ma <minux@golang.org>
Reviewed-by: Andrew Gerrand <adg@golang.org>
This commit is contained in:
David Symonds 2014-12-11 21:54:20 +11:00
parent 3fa5d3a6dc
commit da43976c8b

View File

@ -3,9 +3,9 @@
// (the nodes are the data).
// http://en.wikipedia.org/wiki/Peano_axioms
// This program demonstrates the power of Go's
// segmented stacks when doing massively
// recursive computations.
// This program demonstrates the effectiveness
// of the Go runtime's dynamically growing
// stacks for heavily recursive computations.
package main