From: David Symonds Date: Fri, 12 Dec 2014 00:38:07 +0000 (+1100) Subject: doc/play: revise peano.go comment again. X-Git-Tag: go1.5beta1~2645 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=afc2890291feea1d1d46eb9808118dbd7c28ddb2;p=gostls13.git doc/play: revise peano.go comment again. Change-Id: I412358e99301d1c9603960fd34601dae60fca3cb Reviewed-on: https://go-review.googlesource.com/1400 Reviewed-by: Rob Pike --- 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