From 75e820659cbb5ce15b16207bb712a5c8e88aeead Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 20 Jun 2026 04:09:55 +0000 Subject: [PATCH] docs: fix `v` boundary description in `stats/base/dists/t/entropy` REPL help The REPL help text stated `v < 0` returns `NaN`, but the implementation returns `NaN` for any `v <= 0` (see `lib/main.js`). The README and TypeScript declarations already use `v <= 0`; update the REPL text to match (13/14 sibling packages in the namespace already pair REPL boundary wording with the `lib/main.js` check verbatim). --- .../@stdlib/stats/base/dists/t/entropy/docs/repl.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/t/entropy/docs/repl.txt b/lib/node_modules/@stdlib/stats/base/dists/t/entropy/docs/repl.txt index fdad925da4f8..8d800f7359cf 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/t/entropy/docs/repl.txt +++ b/lib/node_modules/@stdlib/stats/base/dists/t/entropy/docs/repl.txt @@ -4,7 +4,7 @@ If provided `NaN` as any argument, the function returns `NaN`. - If provided `v < 0`, the function returns `NaN`. + If provided `v <= 0`, the function returns `NaN`. Parameters ----------