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 Nov 24, 2023
1 parent e139d03 commit 605203e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion float32/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
```javascript
var arr = new Float32Array( [ 1.0, 2.0, 3.0 ] );

bool = arr.includes( 1.0, -2 );
var bool = arr.includes( 1.0, -2 );
// returns false
```

Expand Down
2 changes: 1 addition & 1 deletion float64/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
```javascript
var arr = new Float64Array( [ 1.0, 2.0, 3.0 ] );

bool = arr.includes( 1.0, -2 );
var bool = arr.includes( 1.0, -2 );
// returns false
```

Expand Down
2 changes: 1 addition & 1 deletion int16/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
```javascript
var arr = new Int16Array( [ 1, 2, 3 ] );

bool = arr.includes( 1, -2 );
var bool = arr.includes( 1, -2 );
// returns false
```

Expand Down
2 changes: 1 addition & 1 deletion int32/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
```javascript
var arr = new Int32Array( [ 1, 2, 3 ] );

bool = arr.includes( 1, -2 );
var bool = arr.includes( 1, -2 );
// returns false
```

Expand Down
2 changes: 1 addition & 1 deletion int8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
```javascript
var arr = new Int8Array( [ 1, 2, 3 ] );

bool = arr.includes( 1, -2 );
var bool = arr.includes( 1, -2 );
// returns false
```

Expand Down
2 changes: 1 addition & 1 deletion uint16/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
```javascript
var arr = new Uint16Array( [ 1, 2, 3 ] );

bool = arr.includes( 1, -2 );
var bool = arr.includes( 1, -2 );
// returns false
```

Expand Down
2 changes: 1 addition & 1 deletion uint32/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
```javascript
var arr = new Uint32Array( [ 1, 2, 3 ] );

bool = arr.includes( 1, -2 );
var bool = arr.includes( 1, -2 );
// returns false
```

Expand Down
2 changes: 1 addition & 1 deletion uint8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
```javascript
var arr = new Uint8Array( [ 1, 2, 3 ] );

bool = arr.includes( 1, -2 );
var bool = arr.includes( 1, -2 );
// returns false
```

Expand Down
2 changes: 1 addition & 1 deletion uint8c/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ When a `fromIndex` is negative, the starting index is resolved relative to the l
```javascript
var arr = new Uint8ClampedArray( [ 1, 2, 3 ] );

bool = arr.includes( 1, -2 );
var bool = arr.includes( 1, -2 );
// returns false
```

Expand Down

0 comments on commit 605203e

Please sign in to comment.