From f7c9d039472ee70a53946b2cd9f0c78c89b246b7 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 11 Jun 2026 12:20:29 +0000 Subject: [PATCH 1/2] docs: replace `Calculate` with `Compute` in `stats/array/min` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Normalize the module-level JSDoc description verb in `lib/index.js` to match the namespace majority. 67 of 69 packages in `stats/array` (97%) begin the module-level JSDoc description with `Compute`; only `min` and `minabs` use `Calculate`. The deviation is inconsistent with the surrounding files of the same package — `main.js` (`Computes`), `docs/types/index.d.ts` (`Computes`), and `docs/repl.txt` (`Computes`) all use the established convention. --- lib/node_modules/@stdlib/stats/array/min/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/array/min/lib/index.js b/lib/node_modules/@stdlib/stats/array/min/lib/index.js index 3fe115811a09..ba288abb377c 100644 --- a/lib/node_modules/@stdlib/stats/array/min/lib/index.js +++ b/lib/node_modules/@stdlib/stats/array/min/lib/index.js @@ -19,7 +19,7 @@ 'use strict'; /** -* Calculate the minimum value of an array. +* Compute the minimum value of an array. * * @module @stdlib/stats/array/min * From 226ba3fe1b71fdf83f96d0c2b4c709921dbb62ae Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 11 Jun 2026 12:20:35 +0000 Subject: [PATCH 2/2] docs: replace `Calculate` with `Compute` in `stats/array/minabs` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Normalize the module-level JSDoc description verb in `lib/index.js` to match the namespace majority. 67 of 69 packages in `stats/array` (97%) begin the module-level JSDoc description with `Compute`; only `min` and `minabs` use `Calculate`. The deviation is inconsistent with the surrounding files of the same package — `main.js` (`Computes`), `docs/types/index.d.ts` (`Computes`), and `docs/repl.txt` (`Computes`) all use the established convention. --- lib/node_modules/@stdlib/stats/array/minabs/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/array/minabs/lib/index.js b/lib/node_modules/@stdlib/stats/array/minabs/lib/index.js index b62459f990fb..160120b9708b 100644 --- a/lib/node_modules/@stdlib/stats/array/minabs/lib/index.js +++ b/lib/node_modules/@stdlib/stats/array/minabs/lib/index.js @@ -19,7 +19,7 @@ 'use strict'; /** -* Calculate the minimum absolute value of an array. +* Compute the minimum absolute value of an array. * * @module @stdlib/stats/array/minabs *