Skip to content

Commit

Permalink
Docs: Fix lodash typos, make spacing consistent (#10073)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshingmachine authored and platinumazure committed Mar 9, 2018
1 parent e33bb64 commit 3aded2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/no-restricted-modules.md
Expand Up @@ -68,7 +68,7 @@ To restrict the use of all Node.js core modules (via https://github.com/nodejs/n

## Examples

Examples of **incorrect** code for this rule with sample `"fs", "cluster","loadash"` restricted modules:
Examples of **incorrect** code for this rule with sample `"fs", "cluster", "lodash"` restricted modules:

```js
/*eslint no-restricted-modules: ["error", "fs", "cluster"]*/
Expand All @@ -89,7 +89,7 @@ var cluster = require('cluster');
var pick = require('lodash/pick');
```

Examples of **correct** code for this rule with sample `"fs", "cluster","loadash"` restricted modules:
Examples of **correct** code for this rule with sample `"fs", "cluster", "lodash"` restricted modules:

```js
/*eslint no-restricted-modules: ["error", "fs", "cluster"]*/
Expand Down

0 comments on commit 3aded2f

Please sign in to comment.