Skip to content

Commit 59d0640

Browse files
authored
docs: propagate recent fixes to sibling packages
PR-URL: #11671 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 39f9ad9 commit 59d0640

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/node_modules/@stdlib/napi/argv-bool/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ The function accepts the following arguments:
137137
- **value**: `[in] napi_value` Node-API value.
138138
- **out**: `[out] bool*` destination for storing output value.
139139
- **message**: `[in] char*` error message.
140-
- **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`.
140+
- **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`.
141141
142142
```c
143143
napi_status stdlib_napi_argv_bool( const napi_env env, const napi_value value, bool *out, const char *message, napi_value *err );

lib/node_modules/@stdlib/ndarray/base/rotl90/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The function accepts the following arguments:
7474
- If `k > 0`, the function rotates the matrix counterclockwise.
7575
- If `k < 0`, the function rotates the matrix clockwise.
7676
- The returned ndarray is a **view** of the input ndarray. Accordingly, writing to the original ndarray will **mutate** the returned ndarray and vice versa.
77-
- 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.
77+
- 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.
7878

7979
</section>
8080

lib/node_modules/@stdlib/ndarray/base/rotr90/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The function accepts the following arguments:
7474
- If `k > 0`, the function rotates the matrix clockwise.
7575
- If `k < 0`, the function rotates the matrix counterclockwise.
7676
- The returned ndarray is a **view** of the input ndarray. Accordingly, writing to the original ndarray will **mutate** the returned ndarray and vice versa.
77-
- 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.
77+
- 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.
7878

7979
</section>
8080

0 commit comments

Comments
 (0)