From 389ecf778627de3b975c79689c7666d8f8211e6f Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 13 Aug 2026 00:24:35 +0000 Subject: [PATCH] chore: add missing namespace keywords to `stats/incr/nancovariance` Add the four standard namespace keywords ('stdmath', 'stats', 'mathematics', 'math') to the package.json keywords array. Each is present in 162 of 163 (99.4%) sibling packages in the stats/incr namespace, including the base sibling stats/incr/covariance and the parallel NaN-aware sibling stats/incr/nancv; nancovariance was the sole member lacking them, an omission introduced when the NaN-aware variant was scaffolded from an incomplete template. Keywords are npm discovery metadata only; this change does not affect runtime behavior, tests, types, or the public API. --- .../@stdlib/stats/incr/nancovariance/package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/node_modules/@stdlib/stats/incr/nancovariance/package.json b/lib/node_modules/@stdlib/stats/incr/nancovariance/package.json index fa2560df8810..26d51b38ed99 100644 --- a/lib/node_modules/@stdlib/stats/incr/nancovariance/package.json +++ b/lib/node_modules/@stdlib/stats/incr/nancovariance/package.json @@ -50,7 +50,11 @@ ], "keywords": [ "stdlib", + "stdmath", "statistics", + "stats", + "mathematics", + "math", "covariance", "incremental", "accumulator",