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 ); 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.