Skip to content

Commit 65607f2

Browse files
committed
docs: fix comments in normal distribution CDF
1 parent 8b94125 commit 65607f2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/normal/cdf/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var addon = require( './../src/addon.node' );
3232
* @param {number} x - input value
3333
* @param {number} mu - mean
3434
* @param {number} sigma - standard deviation
35-
* @returns {Probability} evaluated CDF
35+
* @returns {Probability} evaluated cumulative distribution function
3636
*
3737
* @example
3838
* var y = cdf( 2.0, 0.0, 1.0 );

lib/node_modules/@stdlib/stats/base/dists/normal/cdf/src/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
* with mean `mu` and standard deviation `sigma` at a value `x`.
2727
*
2828
* @param x input value
29-
* @param mu mean of the distribution
30-
* @param sigma standard deviation of the distribution
31-
* @return evaluated CDF
29+
* @param mu mean
30+
* @param sigma standard deviation
31+
* @return evaluated cumulative distribution function
3232
*
3333
* @example
3434
* double y = stdlib_base_arcsine_cdf( 2.0, 0.0, 1.0 );

0 commit comments

Comments
 (0)