Skip to content

Commit 8cdf2e8

Browse files
committed
Fix examples
1 parent c41d3ac commit 8cdf2e8

File tree

4 files changed

+728
-10
lines changed

4 files changed

+728
-10
lines changed

lib/node_modules/@stdlib/array/float32/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
Returns
240240
-------
241241
out: Float32Array
242-
Modified typed array.
242+
Modified array.
243243

244244
Examples
245245
--------
@@ -264,9 +264,9 @@
264264
> var arr = new {{alias}}( [ 1.0, -1.0 ] );
265265
> it = arr.entries();
266266
> it.next().value
267-
[ 1.0, 0 ]
267+
[ 0, 1.0 ]
268268
> it.next().value
269-
[ -1.0, 1 ]
269+
[ 1, -1.0 ]
270270
> it.next().done
271271
true
272272

lib/node_modules/@stdlib/array/float64/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
Returns
240240
-------
241241
out: Float64Array
242-
Modified typed array.
242+
Modified array.
243243

244244
Examples
245245
--------
@@ -264,9 +264,9 @@
264264
> var arr = new {{alias}}( [ 1.0, -1.0 ] );
265265
> it = arr.entries();
266266
> it.next().value
267-
[ 1.0, 0 ]
267+
[ 0, 1.0 ]
268268
> it.next().value
269-
[ -1.0, 1 ]
269+
[ 1, -1.0 ]
270270
> it.next().done
271271
true
272272

lib/node_modules/@stdlib/array/int16/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
Returns
240240
-------
241241
out: Int16Array
242-
Modified typed array.
242+
Modified array.
243243

244244
Examples
245245
--------
@@ -264,9 +264,9 @@
264264
> var arr = new {{alias}}( [ 1, 2 ] );
265265
> it = arr.entries();
266266
> it.next().value
267-
[ 1, 0 ]
267+
[ 0, 1 ]
268268
> it.next().value
269-
[ 2, 1 ]
269+
[ 1, 2 ]
270270
> it.next().done
271271
true
272272

0 commit comments

Comments
 (0)