From 1e53f91a924a65f1624a3175276ebf68b2264ea3 Mon Sep 17 00:00:00 2001 From: "Charles L. Dorian" Date: Sun, 2 May 2010 23:33:08 -0700 Subject: math: fix typo in Cbrt description R=rsc CC=golang-dev http://codereview.appspot.com/979043 Committer: Russ Cox --- src/pkg/math/cbrt.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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 -- cgit v1.2.3