Skip to content

Commit 90b8cb0

Browse files
docs: fix example values
PR-URL: #6362 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 2e1dd43 commit 90b8cb0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/math/base/special/csignum/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { Complex128 } from '@stdlib/types/complex';
3333
* var real = require( '@stdlib/complex/float64/real' );
3434
* var imag = require( '@stdlib/complex/float64/imag' );
3535
*
36-
* var v = cceil( new Complex128( -4.2, 5.5 ) );
36+
* var v = csignum( new Complex128( -4.2, 5.5 ) );
3737
* // returns <Complex128>
3838
*
3939
* var re = real( v );

lib/node_modules/@stdlib/math/base/special/csignum/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* // returns <Complex128>
4343
*
4444
* re = real( v );
45-
* // returns -0.0
45+
* // returns 0.0
4646
*
4747
* im = imag( v );
4848
* // returns 0.0
@@ -51,7 +51,7 @@
5151
* // returns <Complex128>
5252
*
5353
* re = real( v );
54-
* // returns -NaN
54+
* // returns NaN
5555
*
5656
* im = imag( v );
5757
* // returns NaN

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ var cabs = require( '@stdlib/math/base/special/cabs' );
5252
* // returns <Complex128>
5353
*
5454
* re = real( v );
55-
* // returns -0.0
55+
* // returns 0.0
5656
*
5757
* im = imag( v );
5858
* // returns 0.0

lib/node_modules/@stdlib/math/base/special/csignum/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var addon = require( './../src/addon.node' );
5151
* // returns <Complex128>
5252
*
5353
* re = real( v );
54-
* // returns -0.0
54+
* // returns 0.0
5555
*
5656
* im = imag( v );
5757
* // returns 0.0

0 commit comments

Comments
 (0)