From afc2890291feea1d1d46eb9808118dbd7c28ddb2 Mon Sep 17 00:00:00 2001 From: David Symonds Date: Fri, 12 Dec 2014 11:38:07 +1100 Subject: [PATCH] doc/play: revise peano.go comment again. Change-Id: I412358e99301d1c9603960fd34601dae60fca3cb Reviewed-on: https://go-review.googlesource.com/1400 Reviewed-by: Rob Pike --- doc/play/peano.go | 6 +++--- 1 file 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