Skip to content

Commit 880dc38

Browse files
committed
Resolve lint errors
1 parent b757e72 commit 880dc38

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

  • lib/node_modules/@stdlib/utils/inherit

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,16 @@ var inherit = require( '@stdlib/utils/inherit' );
2222

2323
Implements prototypical inheritance by replacing the prototype of one constructor with the prototype of another constructor.
2424

25+
<!-- eslint-disable no-restricted-syntax -->
26+
2527
``` javascript
2628
function Foo() {
2729
return this;
2830
}
2931

3032
Foo.prototype.beep = function beep() {
3133
return 'boop';
32-
}
34+
};
3335

3436
function Bar() {
3537
Foo.call( this );
@@ -59,6 +61,8 @@ inherit( Bar, Foo );
5961

6062
## Examples
6163

64+
<!-- eslint-disable no-restricted-syntax -->
65+
6266
``` javascript
6367
var inherit = require( '@stdlib/utils/inherit' );
6468

0 commit comments

Comments
 (0)