Skip to content

Commit 1e9e606

Browse files
committed
fix: change type of lambda
1 parent e6fce33 commit 1e9e606

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/planck/pmf/lib/factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var expm1 = require( '@stdlib/math/base/special/expm1' );
3232
/**
3333
* Returns a function for evaluating the probability mass function (PMF) for a planck distribution with shape parameter `lambda`.
3434
*
35-
* @param {Probability} lambda - shape parameter
35+
* @param {number} lambda - shape parameter
3636
* @returns {Function} PMF
3737
*
3838
* @example

lib/node_modules/@stdlib/stats/base/dists/planck/pmf/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var expm1 = require( '@stdlib/math/base/special/expm1' );
3232
* Evaluates the probability mass function (PMF) for a planck distribution with shape parameter `lambda` at a value `x`.
3333
*
3434
* @param {number} x - input value
35-
* @param {Probability} lambda - shape parameter
35+
* @param {number} lambda - shape parameter
3636
* @returns {Probability} evaluated PMF
3737
*
3838
* @example

0 commit comments

Comments
 (0)