summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Symonds <dsymonds@golang.org>2014-12-12 11:38:07 +1100
committerDavid Symonds <dsymonds@golang.org>2014-12-12 01:40:04 +0000
commitafc2890291feea1d1d46eb9808118dbd7c28ddb2 (patch)
tree9acc7c8f97dc756d5802b74ad40dd452aa784554
parent5de497bc6fbae2470f700bb9d786a844cd7908db (diff)
downloadgo-git-afc2890291feea1d1d46eb9808118dbd7c28ddb2.tar.gz
doc/play: revise peano.go comment again.
Change-Id: I412358e99301d1c9603960fd34601dae60fca3cb Reviewed-on: https://go-review.googlesource.com/1400 Reviewed-by: Rob Pike <r@golang.org>
-rw-r--r--doc/play/peano.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/play/peano.go b/doc/play/peano.go
index 31619b1b1c..214fe1b613 100644
--- a/doc/play/peano.go
+++ b/doc/play/peano.go
@@ -3,9 +3,9 @@
// (the nodes are the data).
// http://en.wikipedia.org/wiki/Peano_axioms
-// This program demonstrates the effectiveness
-// of the Go runtime's dynamically growing
-// stacks for heavily recursive computations.
+// This program demonstrates that Go's automatic
+// stack management can handle heavily recursive
+// computations.
package main