From 35a0b3b922febd7f0c8b08b0512b8e5deb25d4e9 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 3 Jun 2026 16:15:45 +0000 Subject: [PATCH] docs: harmonize `description` and README intro in `stats/base/dists/exponential/logpdf` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rewrites the `package.json` `description` and `README.md` short-description line so that `logpdf` matches the `Exponential distribution .` template followed by every other member of the `stats/base/dists/exponential` namespace. - `package.json` `description` field: `Natural logarithm of the probability density function (PDF) for an exponential distribution.` → `Exponential distribution logarithm of probability density function (PDF).` (14/15 = 93% of siblings follow the `Exponential distribution .` template; logpdf was the sole outlier). - `README.md` short-description line rewritten to mirror sibling `logcdf`'s intro (`> [Exponential][exponential-distribution] distribution logarithm of [probability density function][pdf] (PDF).`); link references `[pdf]` and `[exponential-distribution]` are already defined at the bottom of the file. No source, test, or behavioral changes. --- .../@stdlib/stats/base/dists/exponential/logpdf/README.md | 2 +- .../@stdlib/stats/base/dists/exponential/logpdf/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/exponential/logpdf/README.md b/lib/node_modules/@stdlib/stats/base/dists/exponential/logpdf/README.md index ee8a737c74fd..39f6bfcd7684 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/exponential/logpdf/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/exponential/logpdf/README.md @@ -20,7 +20,7 @@ limitations under the License. # Logarithm of Probability Density Function -> Evaluate the natural logarithm of the probability density function (PDF) for an [exponential][exponential-distribution] distribution. +> [Exponential][exponential-distribution] distribution logarithm of [probability density function][pdf] (PDF).
diff --git a/lib/node_modules/@stdlib/stats/base/dists/exponential/logpdf/package.json b/lib/node_modules/@stdlib/stats/base/dists/exponential/logpdf/package.json index 704af918eeec..4da4995eafd5 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/exponential/logpdf/package.json +++ b/lib/node_modules/@stdlib/stats/base/dists/exponential/logpdf/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/stats/base/dists/exponential/logpdf", "version": "0.0.0", - "description": "Natural logarithm of the probability density function (PDF) for an exponential distribution.", + "description": "Exponential distribution logarithm of probability density function (PDF).", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors",