aboutsummaryrefslogtreecommitdiff
path: root/test/fibo.go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2014-12-08 14:19:38 -0800
committerRobert Griesemer <gri@golang.org>2014-12-08 22:22:58 +0000
commit779682107fc61c694ca97151c7e4dc2d301e690e (patch)
treef5595d4d79d56c78b78ed22d6f844779791c26e3 /test/fibo.go
parent212914f573654693dbe2ffe44f7ac5aaba96ddb2 (diff)
downloadgo-779682107fc61c694ca97151c7e4dc2d301e690e.tar.gz
go-779682107fc61c694ca97151c7e4dc2d301e690e.zip
Fix whitespace (use blanks consistently).
Change-Id: I73ecfe8f1e46e4821dafc6ed5788f48a1f0deeea Reviewed-on: https://go-review.googlesource.com/1213 Reviewed-by: Alan Donovan <adonovan@google.com>
Diffstat (limited to 'test/fibo.go')
-rw-r--r--test/fibo.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/fibo.go b/test/fibo.go
index 21cb8e925e..3b816d930d 100644
--- a/test/fibo.go
+++ b/test/fibo.go
@@ -5,13 +5,13 @@
// license that can be found in the LICENSE file.
// Usage:
-// fibo <n> compute fibonacci(n), n must be >= 0
-// fibo -bench benchmark fibonacci computation (takes about 1 min)
+// fibo <n> compute fibonacci(n), n must be >= 0
+// fibo -bench benchmark fibonacci computation (takes about 1 min)
//
// Additional flags:
// -half add values using two half-digit additions
-// -opt optimize memory allocation through reuse
-// -short only print the first 10 digits of very large fibonacci numbers
+// -opt optimize memory allocation through reuse
+// -short only print the first 10 digits of very large fibonacci numbers
// Command fibo is a stand-alone test and benchmark to
// evaluate the performance of bignum arithmetic written