Commit 37089cce authored by Charles L. Dorian's avatar Charles L. Dorian Committed by Russ Cox

math: fix typo in Cbrt description

R=rsc
CC=golang-dev
https://golang.org/cl/979043
parent a0514459
...@@ -15,9 +15,9 @@ package math ...@@ -15,9 +15,9 @@ package math
// Cbrt returns the cube root of its argument. // Cbrt returns the cube root of its argument.
// //
// Special cases are: // Special cases are:
// Exp(±0) = ±0 // Cbrt(±0) = ±0
// Exp(±Inf) = ±Inf // Cbrt(±Inf) = ±Inf
// Exp(NaN) = NaN // Cbrt(NaN) = NaN
func Cbrt(x float64) float64 { func Cbrt(x float64) float64 {
const ( const (
A1 = 1.662848358e-01 A1 = 1.662848358e-01
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment