From b6846fe998d1c90b0e1ff59e1044d25a250aefa3 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 2 Jun 2026 20:19:03 +0000 Subject: [PATCH] chore: fix description and `dist` keyword in `pareto-type1/pdf` Within `@stdlib/stats/base/dists/pareto-type1` (14 members), the `pdf` subpackage was the lone outlier on two `package.json` metadata features: - `description` placed the word `distribution` between `Pareto` and `(Type I)`. Reordered to `Pareto (Type I) distribution probability density function (PDF).`, matching 12/14 siblings within the namespace and all 30 sibling `pdf/package.json` descriptions across other distributions. The parent namespace README already documents pdf with this wording. - `keywords` carried the plural `dists`. Replaced with the singular `dist`, matching 13/14 siblings within the namespace and 29/31 sibling `pdf` packages across stdlib. Metadata-only; no source, test, signature, or behavioral changes. --- .../@stdlib/stats/base/dists/pareto-type1/pdf/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/pdf/package.json b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/pdf/package.json index 7f9fceb50fb4..f3476db32bc2 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/pdf/package.json +++ b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/pdf/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/stats/base/dists/pareto-type1/pdf", "version": "0.0.0", - "description": "Pareto distribution (Type I) probability density function (PDF).", + "description": "Pareto (Type I) distribution probability density function (PDF).", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", @@ -57,7 +57,7 @@ "statistics", "stats", "distribution", - "dists", + "dist", "probability", "pdf", "density",