From: Charles L. Dorian Date: Mon, 3 May 2010 06:33:08 +0000 (-0700) Subject: math: fix typo in Cbrt description X-Git-Tag: weekly.2010-05-04~21 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=37089cce678e82aee9cd39736e54e1de31426910;p=gostls13.git math: fix typo in Cbrt description R=rsc CC=golang-dev https://golang.org/cl/979043 --- diff --git a/src/pkg/math/cbrt.go b/src/pkg/math/cbrt.go index 47771647b2..d2b7e910b8 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