Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jun 1, 2024
1 parent b51ad1d commit af1414e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions float32/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
element1: number (optional)
Array element.

elementN: number (optional)
elementN: ...number (optional)
Array elements.

Returns
Expand Down Expand Up @@ -600,7 +600,7 @@
Returns
-------
idx: integer
array index.
Array index.

Examples
--------
Expand Down Expand Up @@ -639,7 +639,7 @@
--------
> var arr1 = new {{alias}}( [ 1.0, 0.0, -1.0 ] );
> function fcn( v ) { return v * 2.0; };
> var arr2 = arr1.map( fcn );
> var arr2 = arr1.map( fcn )
<Float32Array>[ 2.0, 0.0, -2.0 ]


Expand Down Expand Up @@ -736,7 +736,7 @@
Examples
--------
> var arr = new {{alias}}( [ 1.0, 0.0, -1.0 ] )
<Float32Array>[ 1.0, 0.0, -1.0 ]
<Float32Array>
> arr.reverse()
<Float32Array>[ -1.0, 0.0, 1.0 ]

Expand Down
8 changes: 4 additions & 4 deletions float64/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
element1: number (optional)
Array element.

elementN: number (optional)
elementN: ...number (optional)
Array elements.

Returns
Expand Down Expand Up @@ -600,7 +600,7 @@
Returns
-------
idx: integer
array index.
Array index.

Examples
--------
Expand Down Expand Up @@ -639,7 +639,7 @@
--------
> var arr1 = new {{alias}}( [ 1.0, 0.0, -1.0 ] );
> function fcn( v ) { return v * 2.0; };
> var arr2 = arr1.map( fcn );
> var arr2 = arr1.map( fcn )
<Float64Array>[ 2.0, 0.0, -2.0 ]


Expand Down Expand Up @@ -736,7 +736,7 @@
Examples
--------
> var arr = new {{alias}}( [ 1.0, 0.0, -1.0 ] )
<Float64Array>[ 1.0, 0.0, -1.0 ]
<Float64Array>
> arr.reverse()
<Float64Array>[ -1.0, 0.0, 1.0 ]

Expand Down

0 comments on commit af1414e

Please sign in to comment.