Skip to content

Commit 7120ab7

Browse files
committedNov 24, 2023
docs: add missing var declarations
1 parent 5878fac commit 7120ab7

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed
 

‎lib/node_modules/@stdlib/array/float32/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
731731
```javascript
732732
var arr = new Float32Array( [ 1.0, 2.0, 3.0 ] );
733733

734-
bool = arr.includes( 1.0, -2 );
734+
var bool = arr.includes( 1.0, -2 );
735735
// returns false
736736
```
737737

‎lib/node_modules/@stdlib/array/float64/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
723723
```javascript
724724
var arr = new Float64Array( [ 1.0, 2.0, 3.0 ] );
725725

726-
bool = arr.includes( 1.0, -2 );
726+
var bool = arr.includes( 1.0, -2 );
727727
// returns false
728728
```
729729

‎lib/node_modules/@stdlib/array/int16/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
723723
```javascript
724724
var arr = new Int16Array( [ 1, 2, 3 ] );
725725

726-
bool = arr.includes( 1, -2 );
726+
var bool = arr.includes( 1, -2 );
727727
// returns false
728728
```
729729

‎lib/node_modules/@stdlib/array/int32/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
723723
```javascript
724724
var arr = new Int32Array( [ 1, 2, 3 ] );
725725

726-
bool = arr.includes( 1, -2 );
726+
var bool = arr.includes( 1, -2 );
727727
// returns false
728728
```
729729

‎lib/node_modules/@stdlib/array/int8/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
723723
```javascript
724724
var arr = new Int8Array( [ 1, 2, 3 ] );
725725

726-
bool = arr.includes( 1, -2 );
726+
var bool = arr.includes( 1, -2 );
727727
// returns false
728728
```
729729

‎lib/node_modules/@stdlib/array/uint16/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
723723
```javascript
724724
var arr = new Uint16Array( [ 1, 2, 3 ] );
725725

726-
bool = arr.includes( 1, -2 );
726+
var bool = arr.includes( 1, -2 );
727727
// returns false
728728
```
729729

‎lib/node_modules/@stdlib/array/uint32/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
723723
```javascript
724724
var arr = new Uint32Array( [ 1, 2, 3 ] );
725725

726-
bool = arr.includes( 1, -2 );
726+
var bool = arr.includes( 1, -2 );
727727
// returns false
728728
```
729729

‎lib/node_modules/@stdlib/array/uint8/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
723723
```javascript
724724
var arr = new Uint8Array( [ 1, 2, 3 ] );
725725

726-
bool = arr.includes( 1, -2 );
726+
var bool = arr.includes( 1, -2 );
727727
// returns false
728728
```
729729

‎lib/node_modules/@stdlib/array/uint8c/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
723723
```javascript
724724
var arr = new Uint8ClampedArray( [ 1, 2, 3 ] );
725725

726-
bool = arr.includes( 1, -2 );
726+
var bool = arr.includes( 1, -2 );
727727
// returns false
728728
```
729729

1 commit comments

Comments
 (1)

stdlib-bot commented on Nov 24, 2023

@stdlib-bot
Contributor

Coverage Report

Package Statements Branches Functions Lines
array/float32 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/float64 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/int16 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/int32 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/int8 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/uint16 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/uint32 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/uint8 $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$
array/uint8c $\color{green}117/117$
$\color{green}+100.00\%$
$\color{red}6/7$
$\color{green}+85.71\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}117/117$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.