You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/rules/no-multi-comp.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ var HelloJohn = createReactClass({
42
42
43
43
### `ignoreStateless`
44
44
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.
46
46
47
47
The following patterns are considered okay and do not cause warnings:
48
48
@@ -69,4 +69,4 @@ module.exports = HelloJohn;
69
69
70
70
## When Not To Use It
71
71
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