From: David Symonds Date: Thu, 11 Dec 2014 10:54:20 +0000 (+1100) Subject: doc/play: update obsolete comment in peano.go. X-Git-Tag: go1.5beta1~2647 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=da43976c8bd1fd86332c2401956c0b66c19282f0;p=gostls13.git doc/play: update obsolete comment in peano.go. Change-Id: Ibecc2ef1e70c927c325c48bc381091f52c09da85 Reviewed-on: https://go-review.googlesource.com/1355 Reviewed-by: Russ Cox Reviewed-by: Minux Ma Reviewed-by: Andrew Gerrand --- diff --git a/doc/play/peano.go b/doc/play/peano.go index c1ee5ad45d..31619b1b1c 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 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