From 2e38c86f3e2e607e37c633b8cb1201b4d212dd98 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 24 May 2026 00:10:42 +0000 Subject: [PATCH] docs: fix scale parameter reference in `@stdlib/stats/base/dists/levy/entropy` Update the description in `lib/main.js` and `docs/types/index.d.ts` to reference the scale parameter as `c`, matching the function signature and the convention used by sibling packages in `@stdlib/stats/base/dists/levy/*` (10/11 = 91%). The `s` appears to be a copy-paste artifact from sibling distributions (e.g., logistic, frechet) whose scale parameter is named `s`. --- .../@stdlib/stats/base/dists/levy/entropy/docs/types/index.d.ts | 2 +- .../@stdlib/stats/base/dists/levy/entropy/lib/main.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/docs/types/index.d.ts index f2b47125c1e8..c2e3b37690a8 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/docs/types/index.d.ts @@ -19,7 +19,7 @@ // TypeScript Version: 4.1 /** -* Returns the differential entropy for a Lévy distribution with location `mu` and scale `s`. +* Returns the differential entropy for a Lévy distribution with location `mu` and scale `c`. * * ## Notes * diff --git a/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/lib/main.js b/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/lib/main.js index 67a8ed4b89f5..25c0d5147f92 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/lib/main.js +++ b/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/lib/main.js @@ -35,7 +35,7 @@ var PI_TIMES_SIXTEEN = 16.0 * PI; // MAIN // /** -* Returns the differential entropy for a Lévy distribution with location `mu` and scale `s`. +* Returns the differential entropy for a Lévy distribution with location `mu` and scale `c`. * * @param {number} mu - location parameter * @param {PositiveNumber} c - scale parameter