From febd1e6666623040995669b771e1e8a216282394 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 1 Jun 2026 00:18:09 +0000 Subject: [PATCH] fix: correct keyword for `random/streams/poisson` Replace the `continuous` keyword with `discrete` in `@stdlib/random/streams/poisson` to reflect the fact that the Poisson distribution has discrete (non-negative integer) support. All other discrete-distribution packages in `@stdlib/random/streams` (`bernoulli`, `binomial`, `discrete-uniform`, `geometric`, `hypergeometric`, `negative-binomial`, `randi`) use `discrete`, and the sibling `random/iter/poisson`, `random/array/poisson`, and `random/strided/poisson` packages also use `discrete`. The prior `continuous` keyword appears to be a copy-paste oversight (drift conformance: 31/41 sibling packages use a distribution-class keyword consistent with their support). https://claude.ai/code/session_01BTTDiC5C9zLzcmWNQQd1tf --- lib/node_modules/@stdlib/random/streams/poisson/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/random/streams/poisson/package.json b/lib/node_modules/@stdlib/random/streams/poisson/package.json index a46acbcf88be..2529d65908c9 100644 --- a/lib/node_modules/@stdlib/random/streams/poisson/package.json +++ b/lib/node_modules/@stdlib/random/streams/poisson/package.json @@ -64,7 +64,7 @@ "random", "rand", "poisson", - "continuous", + "discrete", "readable", "stream", "seed",