diff options
author | Charles L. Dorian <cldorian@gmail.com> | 2010-05-02 23:33:08 -0700 |
---|---|---|
committer | Charles L. Dorian <cldorian@gmail.com> | 2010-05-02 23:33:08 -0700 |
commit | 1e53f91a924a65f1624a3175276ebf68b2264ea3 (patch) | |
tree | 0100639e0098042557228f1471efbed6612c2e2f | |
parent | bfd541540462a829dbee7f87c1217ceef2f6e2be (diff) | |
download | golang-1e53f91a924a65f1624a3175276ebf68b2264ea3.tar.gz |
math: fix typo in Cbrt description
R=rsc
CC=golang-dev
http://codereview.appspot.com/979043
Committer: Russ Cox <rsc@golang.org>
-rw-r--r-- | src/pkg/math/cbrt.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pkg/math/cbrt.go b/src/pkg/math/cbrt.go index 47771647b..d2b7e910b 100644 --- a/src/pkg/math/cbrt.go +++ b/src/pkg/math/cbrt.go @@ -15,9 +15,9 @@ package math // Cbrt returns the cube root of its argument. // // Special cases are: -// Exp(±0) = ±0 -// Exp(±Inf) = ±Inf -// Exp(NaN) = NaN +// Cbrt(±0) = ±0 +// Cbrt(±Inf) = ±Inf +// Cbrt(NaN) = NaN func Cbrt(x float64) float64 { const ( A1 = 1.662848358e-01 |