Skip to content

Commit 2ffba6d

Browse files
committed
Update copy
1 parent c51e8b9 commit 2ffba6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/array/filled/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The function recognizes the following data types:
6262
- `uint8c`: 8-bit unsigned integers clamped to `0-255`
6363
- `generic`: generic JavaScript values
6464

65-
By default, the output array is `float64` (i.e., a [typed array][mdn-typed-array]). To specify an alternative data type, provide a `dtype` argument.
65+
By default, the output array data type is `float64` (i.e., a [typed array][mdn-typed-array]). To specify an alternative data type, provide a `dtype` argument.
6666

6767
```javascript
6868
var arr = filledarray( 1, 'int32' );

lib/node_modules/@stdlib/array/typed/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The function recognizes the following data types:
6161
- `uint8`: 8-bit unsigned integers
6262
- `uint8c`: 8-bit unsigned integers clamped to `0-255`
6363

64-
By default, the output [typed array][mdn-typed-array] is `float64`. To specify an alternative data type, provide a `dtype` argument.
64+
By default, the output [typed array][mdn-typed-array] data type is `float64`. To specify an alternative data type, provide a `dtype` argument.
6565

6666
```javascript
6767
var arr = typedarray( 'int32' );

0 commit comments

Comments
 (0)