Skip to content

Commit

Permalink
Merge pull request #1432 from jneuendorf/master
Browse files Browse the repository at this point in the history
fixed typos in no-multi-comp
  • Loading branch information
ljharb committed Sep 19, 2017
2 parents ddd05b1 + d2005b1 commit 99b12a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/no-multi-comp.md
Expand Up @@ -42,7 +42,7 @@ var HelloJohn = createReactClass({

### `ignoreStateless`

When `true` the rule will ignore stateless components and will allow you to have multiple stateless components, or one statefull component and some stateless components in the same file.
When `true` the rule will ignore stateless components and will allow you to have multiple stateless components, or one stateful component and some stateless components in the same file.

The following patterns are considered okay and do not cause warnings:

Expand All @@ -69,4 +69,4 @@ module.exports = HelloJohn;

## When Not To Use It

If you prefer to declare multiple components per files you can disable this rule.
If you prefer to declare multiple components per file you can disable this rule.

0 comments on commit 99b12a2

Please sign in to comment.