Skip to content

Commit e510d37

Browse files
committed
Resolve lint errors
1 parent ee98799 commit e510d37

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

lib/node_modules/@stdlib/utils/find/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22

33
> Find elements in an array-like object that satisfy a test condition.
44
5-
A better version than ECMAScript 6 [Array.prototype.find()][mdn-array-find].
6-
7-
85
<section class="usage">
96

107
## Usage
118

9+
<!-- eslint-disable no-redeclare -->
10+
1211
``` javascript
1312
var find = require( '@stdlib/utils/find' );
1413
```
@@ -152,6 +151,8 @@ var vals = find( data, opts, condition );
152151

153152
## Examples
154153

154+
<!-- eslint-disable no-redeclare -->
155+
155156
``` javascript
156157
var round = require( '@stdlib/math/base/special/round' );
157158
var randu = require( '@stdlib/math/base/random/randu' );
@@ -190,8 +191,6 @@ console.log( vals.join( '\n' ) );
190191

191192
<section class="links">
192193

193-
[mdn-array-find]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find
194-
195194
</section>
196195

197196
<!-- /.links -->

0 commit comments

Comments
 (0)