Skip to content

Commit

Permalink
fixed typos in no-multi-comp
Browse files Browse the repository at this point in the history
  • Loading branch information
jneuendorf committed Sep 14, 2017
1 parent ddd05b1 commit d2005b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/no-multi-comp.md
Original file line number Diff line number Diff line change
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 d2005b1

Please sign in to comment.