Skip to content

Commit 5350dd1

Browse files
authored
style: remove extra space
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent af496eb commit 5350dd1

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ double stdlib_base_dists_weibull_mode( const double k, const double lambda ) {
3737
stdlib_base_is_nan( lambda ) ||
3838
k <= 0.0 ||
3939
lambda <= 0.0
40-
) {
40+
) {
4141
return 0.0 / 0.0; // NaN
4242
}
4343
if ( k <= 1.0 ) {

0 commit comments

Comments
 (0)