diff --git a/src/pkg/math/cmplx/pow.go b/src/pkg/math/cmplx/pow.go index df0b8794ce..81821a3ff6 100644 --- a/src/pkg/math/cmplx/pow.go +++ b/src/pkg/math/cmplx/pow.go @@ -44,8 +44,8 @@ import "math" // Pow returns x**y, the base-x exponential of y. // For generalized compatiblity with math.Pow: -// Pow(0, ±0) returns 1+0i -// Pow(0, c) for real(c)<0 returns Inf+0i if imag(c) is zero, otherwise Inf+Inf i. +// Pow(0, ±0) returns 1+0i +// Pow(0, c) for real(c)<0 returns Inf+0i if imag(c) is zero, otherwise Inf+Inf i. func Pow(x, y complex128) complex128 { if x == 0 { // Guaranteed also true for x == -0. r, i := real(y), imag(y)