Skip to content

Commit 054f4e5

Browse files
committed
docs: fix descriptions
--- 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: passed - task: lint_package_json status: passed - task: lint_repl_help status: passed - 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 --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: passed - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent baf8692 commit 054f4e5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/base/dists/planck/logcdf/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# Logarithm of Cumulative Distribution Function
2222

23-
> Evaluate the logarithm of [cumulative distribution function][cdf] Planck (discrete exponential) distribution.
23+
> Evaluate the logarithm of the [cumulative distribution function][cdf] Planck (discrete exponential) distribution.
2424
2525
<section class="intro">
2626

lib/node_modules/@stdlib/stats/base/dists/planck/logcdf/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
Returns
5151
-------
5252
logcdf: Function
53-
Logarithm of cumulative distribution function (CDF).
53+
Logarithm of the cumulative distribution function (CDF).
5454

5555
Examples
5656
--------

lib/node_modules/@stdlib/stats/base/dists/planck/logcdf/docs/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ interface LogCDF {
8686
}
8787

8888
/**
89-
* Evaluates the logarithm of cumulative distribution function (CDF) for a Planck distribution with shape parameter `lambda`.
89+
* Evaluates the logarithm of the cumulative distribution function (CDF) for a Planck distribution with shape parameter `lambda`.
9090
*
9191
* @param x - input value
9292
* @param lambda - shape parameter

lib/node_modules/@stdlib/stats/base/dists/planck/logcdf/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Evaluate the logarithm of cumulative distribution function (CDF) for a Planck distribution with shape parameter `lambda`.
22+
* Evaluate the logarithm of the cumulative distribution function (CDF) for a Planck distribution with shape parameter `lambda`.
2323
*
2424
* @module @stdlib/stats/base/dists/planck/logcdf
2525
*

lib/node_modules/@stdlib/stats/base/dists/planck/logcdf/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/stats/base/dists/planck/logcdf",
33
"version": "0.0.0",
4-
"description": "Evaluate the logarithm of cumulative distribution function (CDF) for a Planck (discrete exponential) distribution.",
4+
"description": "Evaluate the logarithm of the cumulative distribution function (CDF) for a Planck (discrete exponential) distribution.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)