From f321f87e92403194209d913f4eb39191d0e8d9ad Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 10 Jun 2026 12:28:47 +0000 Subject: [PATCH 1/2] fix: correct broken `incrnanmsumabs` TSDoc example in `stats/incr/nanmsumabs` Drop the stray `var nanmsumabs = require( ... );` line from the TSDoc @example block (which then called the undeclared `incrnanmsumabs`) and add the missing second blank line before `// TESTS //` in the TS test file to match sibling packages. --- .../@stdlib/stats/incr/nanmsumabs/docs/types/index.d.ts | 2 -- .../@stdlib/stats/incr/nanmsumabs/docs/types/test.ts | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/incr/nanmsumabs/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/incr/nanmsumabs/docs/types/index.d.ts index b9e1a10e207c..7bcbe6c51212 100644 --- a/lib/node_modules/@stdlib/stats/incr/nanmsumabs/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/stats/incr/nanmsumabs/docs/types/index.d.ts @@ -41,8 +41,6 @@ type accumulator = ( x?: number ) => number | null; * @returns accumulator function * * @example -* var nanmsumabs = require( '@stdlib/stats/incr/nanmsumabs' ); -* * var accumulator = incrnanmsumabs( 3 ); * * var v = accumulator(); diff --git a/lib/node_modules/@stdlib/stats/incr/nanmsumabs/docs/types/test.ts b/lib/node_modules/@stdlib/stats/incr/nanmsumabs/docs/types/test.ts index 0d147fb11e6e..29d2abe2f271 100644 --- a/lib/node_modules/@stdlib/stats/incr/nanmsumabs/docs/types/test.ts +++ b/lib/node_modules/@stdlib/stats/incr/nanmsumabs/docs/types/test.ts @@ -18,6 +18,7 @@ import incrnanmsumabs = require( './index' ); + // TESTS // // The function returns an accumulator function... From 73875e8f2e2e8dee408fe375e9aadf5377378427 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 10 Jun 2026 12:28:53 +0000 Subject: [PATCH 2/2] docs: use local equation image path in `stats/incr/nanmse` README Sibling new packages `nanrmse` and `nanmsumabs` use a local `./docs/img/...` path for the HTML-fallback equation image; `nanmse` ships its own SVG but pointed at the source package's CDN URL. --- lib/node_modules/@stdlib/stats/incr/nanmse/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/incr/nanmse/README.md b/lib/node_modules/@stdlib/stats/incr/nanmse/README.md index 2708f203e5e2..cc17e86d11b5 100644 --- a/lib/node_modules/@stdlib/stats/incr/nanmse/README.md +++ b/lib/node_modules/@stdlib/stats/incr/nanmse/README.md @@ -33,7 +33,7 @@ The [mean squared error][mean-squared-error] is defined as ```