Skip to content

Commit fb0fb08

Browse files
committed
Update copy
1 parent d99ee7e commit fb0fb08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/array/base/setter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The returned accessor function accepts the following arguments:
7070

7171
## Notes
7272

73-
- If provided an unrecognized [`dtype`][@stdlib/array/dtypes], the function returns a default accessor function for accessing elements in any indexed array-like object; otherwise, the function returns an accessor function which should **only** be provided an array instance corresponding to `dtype` (e.g., if `dtype` is `'float64'`, the returned accessor function should only be provided instances of `Float64Array`).
73+
- If provided an unsupported [`dtype`][@stdlib/array/dtypes], the function returns a default accessor function for accessing elements in any indexed array-like object; otherwise, the function returns an accessor function which should **only** be provided an array instance corresponding to `dtype` (e.g., if `dtype` is `'float64'`, the returned accessor function should only be provided instances of `Float64Array`).
7474
- Accessor functions do **not** verify that provided input arrays are array instances corresponding to `dtype`, as doing so would introduce performance overhead. If array instances corresponding to other data types are provided to an accessor function, JavaScript runtimes will consider the function polymorphic, potentially triggering de-optimization. In order to ensure maximum performance, **always** ensure that an accessor function is monomorphic.
7575
- Accessor functions do **not** perform bounds checking.
7676
- Accessor functions do **not** validate input values.

lib/node_modules/@stdlib/array/base/setter/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- idx: element index
1010
- value: value to set
1111

12-
If provided an unrecognized `dtype`, the function returns a default accessor
12+
If provided an unsupported `dtype`, the function returns a default accessor
1313
function for accessing elements in any indexed array-like object.
1414

1515
Otherwise, the function returns an accessor function which should *only* be

0 commit comments

Comments
 (0)