]> Cypherpunks repositories - gostls13.git/commitdiff
Fix whitespace (use blanks consistently).
authorRobert Griesemer <gri@golang.org>
Mon, 8 Dec 2014 22:19:38 +0000 (14:19 -0800)
committerRobert Griesemer <gri@golang.org>
Mon, 8 Dec 2014 22:22:58 +0000 (22:22 +0000)
Change-Id: I73ecfe8f1e46e4821dafc6ed5788f48a1f0deeea
Reviewed-on: https://go-review.googlesource.com/1213
Reviewed-by: Alan Donovan <adonovan@google.com>
test/fibo.go

index 21cb8e925e9bd8342ac73a275a1628405289c2bb..3b816d930dfd3b44a46faead0eefc308028db4ae 100644 (file)
@@ -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