Skip to content

Commit ecf314f

Browse files
authored
style: add missing space
Signed-off-by: Athan <[email protected]>
1 parent 4230887 commit ecf314f

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ double stdlib_base_roundsd( const double x, const int32_t n, const int32_t b ) {
5050
double y;
5151

5252
if ( stdlib_base_is_nan( x ) || n < 1 ) {
53-
return 0.0/0.0; //NaN
53+
return 0.0/0.0; // NaN
5454
}
5555
if ( stdlib_base_is_infinite( x ) || x == 0.0 ) {
5656
return x;

0 commit comments

Comments
 (0)