Skip to content

Commit 7036b32

Browse files
authored
chore: address commit comment
PR-URL: #5972 Closes: #5896 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent d8322de commit 7036b32

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/geometric/quantile/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/geometric/quantile/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ double stdlib_base_dists_geometric_quantile( const double r, const double p ) {
4545
) {
4646
return 0.0 / 0.0; // NaN
4747
}
48-
if( r == 1.0 ){
48+
if ( r == 1.0 ) {
4949
return STDLIB_CONSTANT_FLOAT64_PINF;
5050
}
5151
return stdlib_base_max( 0.0, stdlib_base_floor( stdlib_base_ln( 1.0 - r ) / stdlib_base_ln( 1.0 - p ) ) );

0 commit comments

Comments
 (0)