diff options
Diffstat (limited to 'src/pkg/math/frexp.go')
| -rw-r--r-- | src/pkg/math/frexp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/math/frexp.go b/src/pkg/math/frexp.go index ab226e774..1e497fdb7 100644 --- a/src/pkg/math/frexp.go +++ b/src/pkg/math/frexp.go @@ -6,7 +6,7 @@ package math // Frexp breaks f into a normalized fraction // and an integral power of two. -// It returns frac and exp satisfying f == frac × 2^exp, +// It returns frac and exp satisfying f == frac × 2**exp, // with the absolute value of frac in the interval [½, 1). func Frexp(f float64) (frac float64, exp int) { // TODO(rsc): Remove manual inlining of IsNaN, IsInf |
