Skip to content

Commit 2a2b10b

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

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/special/fast/maxf/src/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
*
2828
* @example
2929
* float v = stdlib_base_fast_maxf( 3.14f, 4.2f );
30-
* // returns 4.200000
30+
* // returns 4.2f
3131
*
3232
* @example
3333
* float v = stdlib_base_fast_maxf( -0.0f, +0.0f );
34-
* // returns +0.000000
34+
* // returns +0.0f
3535
*
3636
* @example
3737
* float v = stdlib_base_fast_maxf( +0.0f, -0.0f );
38-
* // returns -0.000000
38+
* // returns -0.0f
3939
*/
4040
float stdlib_base_fast_maxf( const float x, const float y ) {
4141
if ( x > y ) {

0 commit comments

Comments
 (0)