| commit | 3c3e68ba328cd5d9c798604fe5606b8c37a47a87 | [log] [tgz] |
|---|---|---|
| author | Charles L. Dorian <cldorian@gmail.com> | Fri Apr 09 14:37:33 2010 -0700 |
| committer | Russ Cox <rsc@golang.org> | Fri Apr 09 14:37:33 2010 -0700 |
| tree | 782936959ec949164997aa78f3379284247be57c | |
| parent | 9b1d6332e877e633c1870b01af11eaa909399ba0 [diff] [blame] |
math: use ** for exponentiation in comments R=rsc CC=golang-dev https://golang.org/cl/908041
diff --git a/src/pkg/math/log.go b/src/pkg/math/log.go index 1727c77..02e767b 100644 --- a/src/pkg/math/log.go +++ b/src/pkg/math/log.go
@@ -27,7 +27,7 @@ // // Method : // 1. Argument Reduction: find k and f such that -// x = 2^k * (1+f), +// x = 2**k * (1+f), // where sqrt(2)/2 < 1+f < sqrt(2) . // // 2. Approximation of log(1+f).