summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorprithvitewatia <42640176+prithvitewatia@users.noreply.github.com>2022-12-01 22:30:49 +0530
committerGitHub <noreply@github.com>2022-12-01 22:30:49 +0530
commit4c55e1bb06f8cc9a2588123b2a1780625e0f6053 (patch)
treed05fcf06ec432891f6e07b5ea1ff1b8e0292db2c /numpy
parentcc919b535a9f5a412977c2775076f174798da9ba (diff)
downloadnumpy-4c55e1bb06f8cc9a2588123b2a1780625e0f6053.tar.gz
Update numpy/core/src/npymath/npy_math_complex.c.src
Co-authored-by: Matti Picus <matti.picus@gmail.com>
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/src/npymath/npy_math_complex.c.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/npymath/npy_math_complex.c.src b/numpy/core/src/npymath/npy_math_complex.c.src
index a7ccd054d..1c3adba18 100644
--- a/numpy/core/src/npymath/npy_math_complex.c.src
+++ b/numpy/core/src/npymath/npy_math_complex.c.src
@@ -448,7 +448,7 @@ npy_cpow@c@ (@ctype@ a, @ctype@ b)
/*
* Checking if in a^b, if b is zero.
* If a is not zero then by definition of logarithm a^0 is 1.
- * If a is also zero then as per IEEE 754 0^0 is best defined as 1.
+ * If a is also zero then 0^0 is best defined as 1.
*/
if (br == 0. && bi == 0.) {
return npy_cpack@c@(1., 0.);