diff options
Diffstat (limited to 'src/pkg/cmath/conj.go')
-rw-r--r-- | src/pkg/cmath/conj.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/cmath/conj.go b/src/pkg/cmath/conj.go index 7a19e8631..776b57da7 100644 --- a/src/pkg/cmath/conj.go +++ b/src/pkg/cmath/conj.go @@ -5,4 +5,4 @@ package cmath // Conj returns the complex conjugate of x. -func Conj(x complex128) complex128 { return cmplx(real(x), -imag(x)) } +func Conj(x complex128) complex128 { return complex(real(x), -imag(x)) } |