We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bddb535 commit 2a2b10bCopy full SHA for 2a2b10b
lib/node_modules/@stdlib/math/base/special/fast/maxf/src/main.c
@@ -27,15 +27,15 @@
27
*
28
* @example
29
* float v = stdlib_base_fast_maxf( 3.14f, 4.2f );
30
-* // returns 4.200000
+* // returns 4.2f
31
32
33
* float v = stdlib_base_fast_maxf( -0.0f, +0.0f );
34
-* // returns +0.000000
+* // returns +0.0f
35
36
37
* float v = stdlib_base_fast_maxf( +0.0f, -0.0f );
38
-* // returns -0.000000
+* // returns -0.0f
39
*/
40
float stdlib_base_fast_maxf( const float x, const float y ) {
41
if ( x > y ) {
0 commit comments