Skip to content

Commit 396010a

Browse files
committed
Auto-generated commit
1 parent 89398ba commit 396010a

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-12-29)
7+
## Unreleased (2025-12-30)
88

99
<section class="features">
1010

@@ -3540,6 +3540,7 @@ A total of 560 issues were closed in this release:
35403540

35413541
<details>
35423542

3543+
- [`50b3a2c`](https://github.com/stdlib-js/stdlib/commit/50b3a2c95317bf69b879709c648aacf908439c16) - **docs:** fix function name tags _(by Philipp Burckhardt)_
35433544
- [`4b1efc6`](https://github.com/stdlib-js/stdlib/commit/4b1efc6552af03e1b7d260f6f10e7e042e7d68f6) - **docs:** update dtype type _(by Athan Reines)_
35443545
- [`ff435c0`](https://github.com/stdlib-js/stdlib/commit/ff435c01d291e9ef75429a026fb221b729aa4a07) - **docs:** update dtype type _(by Athan Reines)_
35453546
- [`20d29ed`](https://github.com/stdlib-js/stdlib/commit/20d29ed3410f2ff8ff6bfadbfb0a1f5a4b7e5fde) - **fix:** use `int8ndarray` type for alternative hypothesis param in `ndarray/sztest` and `ndarray/dztest` _(by Philipp Burckhardt)_

base/dists/degenerate/ctor/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ setReadOnly( Degenerate.prototype, 'logpdf', degenerateLogPDF );
351351
/**
352352
* Evaluates the natural logarithm of the probability mass function (logPMF).
353353
*
354-
* @name logpdf
354+
* @name logpmf
355355
* @memberof Degenerate.prototype
356356
* @type {Function}
357357
* @param {number} x - input value

base/dists/geometric/ctor/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ setReadOnly( Geometric.prototype, 'logcdf', geometricLogCDF );
346346
/**
347347
* Evaluates the natural logarithm of the probability mass function (logPMF).
348348
*
349-
* @name logpdf
349+
* @name logpmf
350350
* @memberof Geometric.prototype
351351
* @type {Function}
352352
* @param {number} x - input value

base/dists/levy/ctor/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ setReadOnly( Levy.prototype, 'cdf', levyCDF );
300300
/**
301301
* Evaluates the natural logarithm of the cumulative distribution function (CDF).
302302
*
303-
* @name cdf
303+
* @name logcdf
304304
* @memberof Levy.prototype
305305
* @type {Function}
306306
* @param {number} x - input value

base/dists/rayleigh/ctor/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ setReadOnly( Rayleigh.prototype, 'cdf', rayleighCDF );
328328
/**
329329
* Evaluates the natural logarithm of the cumulative distribution function (CDF).
330330
*
331-
* @name cdf
331+
* @name logcdf
332332
* @memberof Rayleigh.prototype
333333
* @type {Function}
334334
* @param {number} x - input value
@@ -346,7 +346,7 @@ setReadOnly( Rayleigh.prototype, 'logcdf', rayleighLogCDF );
346346
/**
347347
* Evaluates the natural logarithm of the probability density function (PDF).
348348
*
349-
* @name pdf
349+
* @name logpdf
350350
* @memberof Rayleigh.prototype
351351
* @type {Function}
352352
* @param {number} x - input value

nanmean/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var table = {
5353
/**
5454
* Computes the arithmetic mean along one or more ndarray dimensions, ignoring `NaN` values.
5555
*
56-
* @name mean
56+
* @name nanmean
5757
* @type {Function}
5858
* @param {ndarray} x - input ndarray
5959
* @param {Options} [options] - function options

0 commit comments

Comments
 (0)