diff options
author | Brian Wignall <brianwignall@gmail.com> | 2019-12-19 03:39:59 -0500 |
---|---|---|
committer | Brian Wignall <brianwignall@gmail.com> | 2019-12-19 03:39:59 -0500 |
commit | 0c2a5eb42c0cddf6844880f1494ddf7765bf9c7b (patch) | |
tree | 9a8005ae483b36cf80493ca1389a6002369ee3fd /numpy/linalg/lapack_lite/f2c.c | |
parent | 6d69a9e163858de5d0ea2ae810b8febc7eec1dbc (diff) | |
download | numpy-0c2a5eb42c0cddf6844880f1494ddf7765bf9c7b.tar.gz |
Fix typos, via a Levenshtein-style corrector
Diffstat (limited to 'numpy/linalg/lapack_lite/f2c.c')
-rw-r--r-- | numpy/linalg/lapack_lite/f2c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/linalg/lapack_lite/f2c.c b/numpy/linalg/lapack_lite/f2c.c index 1114bef3b..9a1e9cec1 100644 --- a/numpy/linalg/lapack_lite/f2c.c +++ b/numpy/linalg/lapack_lite/f2c.c @@ -567,7 +567,7 @@ if( (abi = b->i) < 0.f) abi = - abi; if( abr <= abi ) { - /*Let IEEE Infinties handle this ;( */ + /*Let IEEE Infinities handle this ;( */ /*if(abi == 0) sig_die("complex division by zero", 1);*/ ratio = b->r / b->i ; @@ -603,7 +603,7 @@ if( (abi = b->i) < 0.) abi = - abi; if( abr <= abi ) { - /*Let IEEE Infinties handle this ;( */ + /*Let IEEE Infinities handle this ;( */ /*if(abi == 0) sig_die("complex division by zero", 1);*/ ratio = b->r / b->i ; |