Skip to content

Commit 7120ab7

Browse files
committed
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

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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

Diff for: 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

0 commit comments

Comments
 (0)