From af4df60a046044392f72cbaf8415c4cfa694d341 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 17 Jul 2026 00:20:50 +0000 Subject: [PATCH 1/2] docs: fix typo in `@stdlib/stats/base/dists/levy/entropy` C header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrects the misspelling `differentaial` → `differential` in `include/stdlib/stats/base/dists/levy/entropy.h`. The typo is the only occurrence of that misspelling in the `levy` namespace; every other reference to the function's description (`src/main.c`, `lib/main.js`, `lib/native.js`, `docs/repl.txt`, `docs/types/index.d.ts`, `README.md`, `test/test.js`, `test/test.native.js`, and the `ctor` package's cross references) already uses the correct spelling. --- .../levy/entropy/include/stdlib/stats/base/dists/levy/entropy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/include/stdlib/stats/base/dists/levy/entropy.h b/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/include/stdlib/stats/base/dists/levy/entropy.h index 3d94bf1d36d8..218c2d5cce95 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/include/stdlib/stats/base/dists/levy/entropy.h +++ b/lib/node_modules/@stdlib/stats/base/dists/levy/entropy/include/stdlib/stats/base/dists/levy/entropy.h @@ -27,7 +27,7 @@ extern "C" { #endif /** -* Returns the differentaial entropy for a Lévy distribution with location `mu` and scale `c`. +* Returns the differential entropy for a Lévy distribution with location `mu` and scale `c`. */ double stdlib_base_dists_levy_entropy( const double mu, const double c ); From 5d7b6a85edc954b4b055d9fed58c47a8faa3d099 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 17 Jul 2026 00:21:01 +0000 Subject: [PATCH 2/2] docs: align `@stdlib/stats/base/dists/levy/quantile` C source docstring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rewrites the function-level docstring in `src/main.c` from `Returns the quantile for a Lévy distribution with location \`mu\` and scale \`c\`.` to `Evaluates the quantile function for a Lévy distribution with location parameter \`mu\` and scale parameter \`c\` at a probability \`p\`.`, matching the pattern used by all four sibling `src/main.c` docstrings in the `levy` distribution namespace (`cdf`, `pdf`, `logcdf`, `logpdf`) — 4/5 conformance before this change — and aligning `src` with the package's own header (`include/.../quantile.h`), `lib/main.js`, `lib/native.js`, `docs/repl.txt`, and `docs/types/index.d.ts`, which all already use the "Evaluates the quantile function ... at a probability \`p\`" phrasing. --- .../@stdlib/stats/base/dists/levy/quantile/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/levy/quantile/src/main.c b/lib/node_modules/@stdlib/stats/base/dists/levy/quantile/src/main.c index 09434b8de81a..2ea9b6b52ff5 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/levy/quantile/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dists/levy/quantile/src/main.c @@ -21,7 +21,7 @@ #include "stdlib/math/base/special/erfcinv.h" /** -* Returns the quantile for a Lévy distribution with location `mu` and scale `c`. +* Evaluates the quantile function for a Lévy distribution with location parameter `mu` and scale parameter `c` at a probability `p`. * * @param p input value * @param mu location parameter