Skip to content

Commit b757e72

Browse files
committed
Resolve lint errors
1 parent cd8eaab commit b757e72

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/utils/index-of

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/utils/index-of/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ var idx = indexOf( str, 'o' );
9191
* Search is performed using __strict equality__ comparison. Thus,
9292

9393
``` javascript
94-
var arr = [ 1, [1,2,3], 3 ];
94+
var arr = [ 1, [ 1, 2, 3 ], 3 ];
9595

96-
var idx = indexOf( arr, [1,2,3] );
96+
var idx = indexOf( arr, [ 1, 2, 3 ] );
9797
// returns -1
9898
```
9999

@@ -118,7 +118,7 @@ var idx = indexOf( str, 'o' );
118118
Obj.prototype[ 2 ] = 'bop';
119119

120120
var obj = new Obj();
121-
121+
122122
idx = indexOf( obj, 'bop' );
123123
// returns -1
124124

0 commit comments

Comments
 (0)