From d2005b1b0259417848ee5678f295eb6126d4b742 Mon Sep 17 00:00:00 2001 From: Jim Date: Thu, 14 Sep 2017 11:13:33 +0200 Subject: [PATCH] fixed typos in no-multi-comp --- docs/rules/no-multi-comp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rules/no-multi-comp.md b/docs/rules/no-multi-comp.md index 0293fc78ed..ac972d87ae 100644 --- a/docs/rules/no-multi-comp.md +++ b/docs/rules/no-multi-comp.md @@ -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: @@ -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.