Skip to content

Commit 50b3a2c

Browse files
committed
docs: fix function name tags
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 72be5b1 commit 50b3a2c

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

lib/node_modules/@stdlib/stats/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

lib/node_modules/@stdlib/stats/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

lib/node_modules/@stdlib/stats/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

lib/node_modules/@stdlib/stats/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

lib/node_modules/@stdlib/stats/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)