Skip to content

Commit b08cf89

Browse files
docs: fix parameter type in comment of pareto-type1/mean/lib/native.js
PR-URL: #10811 Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 5bc6fd8 commit b08cf89

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/pareto-type1/mean/lib

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/pareto-type1/mean/lib/native.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ var addon = require( './../src/addon.node' );
2929
* Returns the expected value for a Pareto Type I distribution with shape parameter `alpha` and scale parameter `beta`.
3030
*
3131
* @private
32-
* @param {number} alpha - shape parameter
33-
* @param {number} beta - scale parameter
34-
* @returns {number} expected value
32+
* @param {PositiveNumber} alpha - shape parameter
33+
* @param {PositiveNumber} beta - scale parameter
34+
* @returns {PositiveNumber} expected value
3535
*
3636
* @example
3737
* var y = mean( 2.0, 1.0 );

0 commit comments

Comments
 (0)