Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/napi/argv-bool/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/rotl90/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

</section>

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/ndarray/base/rotr90/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

</section>

Expand Down