diff options
Diffstat (limited to 'src/pkg/cmath/pow.go')
-rw-r--r-- | src/pkg/cmath/pow.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/cmath/pow.go b/src/pkg/cmath/pow.go index bb8698433..de2c4db56 100644 --- a/src/pkg/cmath/pow.go +++ b/src/pkg/cmath/pow.go @@ -42,7 +42,7 @@ import "math" // arithmetic domain # trials peak rms // IEEE -10,+10 30000 9.4e-15 1.5e-15 -// Pow returns x^y, the base-x exponential of y. +// Pow returns x**y, the base-x exponential of y. func Pow(x, y complex128) complex128 { modulus := Abs(x) if modulus == 0 { |