Skip to content

Commit 99b12a2

Browse files
authored
Merge pull request #1432 from jneuendorf/master
fixed typos in no-multi-comp
2 parents ddd05b1 + d2005b1 commit 99b12a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/rules/no-multi-comp.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var HelloJohn = createReactClass({
4242

4343
### `ignoreStateless`
4444

45-
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.
45+
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.
4646

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

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

7070
## When Not To Use It
7171

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

0 commit comments

Comments
 (0)