Skip to content

Commit bddb535

Browse files
authored
docs: update return annotations
Signed-off-by: Athan <[email protected]>
1 parent c9a66c7 commit bddb535

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/fast/maxf/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
* var maxf = require( '@stdlib/math/base/special/fast/maxf' );
2828
*
2929
* var v = maxf( 3.14, 4.2 );
30-
* // returns 4.199999809265137
30+
* // returns ~4.2
3131
*
3232
* var v = maxf( 3.14, NaN );
3333
* // returns NaN
3434
*
3535
* var v = maxf( NaN, 3.14 );
36-
* // returns 3.140000104904175
36+
* // returns ~3.14
3737
*
3838
* var v = maxf( -0.0, +0.0 );
3939
* // returns +0.0

0 commit comments

Comments
 (0)