Skip to content

Commit 088689a

Browse files
Aadish JainAadish Jain
authored andcommitted
feat(t-mode): fixing main.c
1 parent c3fcf4d commit 088689a

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/t/mode/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/t/mode/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* // returns 0.0
3131
*/
3232
double stdlib_base_dists_t_mode( const double v ) {
33-
if ( stdlib_base_is_nan( v ) || v < 0.0) {
33+
if ( stdlib_base_is_nan( v ) || v < 0.0 ) {
3434
return 0.0 / 0.0; // NaN
3535
}
3636
return 0.0;

0 commit comments

Comments
 (0)