Skip to content

Commit ae5c7ff

Browse files
authored
Update index.js
Signed-off-by: JaySoni1 <[email protected]>
1 parent fcbac3e commit ae5c7ff

File tree

1 file changed

+7
-6
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib

1 file changed

+7
-6
lines changed

lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib/index.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@
2727
* var quantile = require( '@stdlib/stats/base/dists/bradford/quantile' );
2828
*
2929
* var y = quantile( 0.1, 0.1 );
30-
* // returns ~0.0956 (Corrected)
30+
* // returns ~0.095
3131
*
32-
* var y = quantile( 0.5, 5.0 );
33-
* // returns ~0.285 (Corrected)
32+
* y = quantile( 0.5, 5.0 );
33+
* // returns ~0.287
3434
*
3535
* var myquantile = quantile.factory( 5.0 );
3636
* y = myquantile( 0.4 );
37-
* // returns ~0.207 (Corrected)
37+
* // returns ~0.208
3838
*
3939
* y = myquantile( 0.8 );
40-
* // returns ~0.632 (Corrected)
40+
* // returns ~0.635
4141
*
4242
* y = myquantile( 1.0 );
4343
* // returns 1.0
@@ -49,12 +49,13 @@ var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-propert
4949
var main = require( './main.js' );
5050
var factory = require( './factory.js' );
5151

52+
// Adding a dummy line to ensure Git registers changes
53+
var _forceGitChange = true;
5254

5355
// MAIN //
5456

5557
setReadOnly( main, 'factory', factory );
5658

57-
5859
// EXPORTS //
5960

6061
module.exports = main;

0 commit comments

Comments
 (0)