Skip to content

Commit ed89c11

Browse files
committed
chore: stuff from code review
1 parent 072e306 commit ed89c11

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/cinvf/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/cinvf/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ function cinvf( z ) {
8686
}
8787
if ( absf( im ) <= absf( re ) ) {
8888
r = im / re;
89-
t = 1.0 / ( re + ( im * r) );
89+
t = 1.0 / ( re + ( im * r ) );
9090
re = t;
9191
im = -r * t;
9292
} else {
9393
r = re / im;
94-
t = 1.0 / ( im + ( re * r) );
94+
t = 1.0 / ( im + ( re * r ) );
9595
re = r * t;
9696
im = -t;
9797
}

0 commit comments

Comments
 (0)