From 37089cce678e82aee9cd39736e54e1de31426910 Mon Sep 17 00:00:00 2001 From: "Charles L. Dorian" Date: Sun, 2 May 2010 23:33:08 -0700 Subject: [PATCH] math: fix typo in Cbrt description R=rsc CC=golang-dev https://golang.org/cl/979043 --- src/pkg/math/cbrt.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.50.0