From be7356a6190a3137459016da6bcdb69311dac709 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 20 Apr 2026 13:42:08 +0000 Subject: [PATCH 1/2] docs: correct `err` description in `napi/argv-bool` Propagates fix from f3dfe11d51 ("docs: update descriptions") to a sibling napi/argv-* package missed in the original pass. The `**err**` entry carried a copy-paste "If not provided a number," phrasing; the helper validates a JS boolean, so the phrase now matches the validated type. --- lib/node_modules/@stdlib/napi/argv-bool/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/napi/argv-bool/README.md b/lib/node_modules/@stdlib/napi/argv-bool/README.md index b093b1bb54bf..b259b2a1190f 100644 --- a/lib/node_modules/@stdlib/napi/argv-bool/README.md +++ b/lib/node_modules/@stdlib/napi/argv-bool/README.md @@ -137,7 +137,7 @@ The function accepts the following arguments: - **value**: `[in] napi_value` Node-API value. - **out**: `[out] bool*` destination for storing output value. - **message**: `[in] char*` error message. -- **err**: `[out] napi_value*` pointer for storing a JavaScript error. If not provided a number, the function sets `err` with a JavaScript error; otherwise, `err` is set to `NULL`. +- **err**: `[out] napi_value*` pointer for storing a JavaScript error. If not provided a boolean, the function sets `err` with a JavaScript error; otherwise, `err` is set to `NULL`. ```c napi_status stdlib_napi_argv_bool( const napi_env env, const napi_value value, bool *out, const char *message, napi_value *err ); From 17320dddda1d338fe70447d64c6d98c5b3edf8ca Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 20 Apr 2026 13:42:29 +0000 Subject: [PATCH 2/2] docs: add missing article in `ndarray/base/rot{l,r}90` notes Propagates fix from f756fa1bee ("docs: update note") and c2c401e37f ("docs: update note") to the `ndarray/base/rotl90` and `ndarray/base/rotr90` READMEs. Both mirrored the original "perform rotation" phrasing from `ndarray/rotr90`; insert the missing article so the notes now read "perform a rotation". --- lib/node_modules/@stdlib/ndarray/base/rotl90/README.md | 2 +- lib/node_modules/@stdlib/ndarray/base/rotr90/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/ndarray/base/rotl90/README.md b/lib/node_modules/@stdlib/ndarray/base/rotl90/README.md index 85ac9aba0454..28dc551ddad0 100644 --- a/lib/node_modules/@stdlib/ndarray/base/rotl90/README.md +++ b/lib/node_modules/@stdlib/ndarray/base/rotl90/README.md @@ -74,7 +74,7 @@ The function accepts the following arguments: - If `k > 0`, the function rotates the matrix counterclockwise. - If `k < 0`, the function rotates the matrix clockwise. - The returned ndarray is a **view** of the input ndarray. Accordingly, writing to the original ndarray will **mutate** the returned ndarray and vice versa. -- If provided an ndarray with fewer than two dimensions, the function does not perform rotation and simply returns a new view of the input ndarray. +- If provided an ndarray with fewer than two dimensions, the function does not perform a rotation and simply returns a new view of the input ndarray. diff --git a/lib/node_modules/@stdlib/ndarray/base/rotr90/README.md b/lib/node_modules/@stdlib/ndarray/base/rotr90/README.md index 87301db11274..55b3fe245031 100644 --- a/lib/node_modules/@stdlib/ndarray/base/rotr90/README.md +++ b/lib/node_modules/@stdlib/ndarray/base/rotr90/README.md @@ -74,7 +74,7 @@ The function accepts the following arguments: - If `k > 0`, the function rotates the matrix clockwise. - If `k < 0`, the function rotates the matrix counterclockwise. - The returned ndarray is a **view** of the input ndarray. Accordingly, writing to the original ndarray will **mutate** the returned ndarray and vice versa. -- If provided an ndarray with fewer than two dimensions, the function does not perform rotation and simply returns a new view of the input ndarray. +- If provided an ndarray with fewer than two dimensions, the function does not perform a rotation and simply returns a new view of the input ndarray.