Skip to content

Commit 516ff41

Browse files
authored
style: fix spacing
Signed-off-by: Athan <[email protected]>
1 parent de0d654 commit 516ff41

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/fast/absf/src

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* // returns 5.0f
3030
*/
3131
float stdlib_base_fast_absf( const float x ) {
32-
if (x < 0.0) {
32+
if ( x < 0.0 ) {
3333
return -x;
3434
}
3535
return x;

0 commit comments

Comments
 (0)