diff --git a/lib/rules/require-early-return.js b/lib/rules/require-early-return.js index 2bbbf48f8..83feaba8d 100644 --- a/lib/rules/require-early-return.js +++ b/lib/rules/require-early-return.js @@ -4,7 +4,7 @@ * Types: `Boolean` * * Values: - * - `true`: disallow to use of else if the corrisponding `if` block contain a return. + * - `true`: disallow to use of else if the corresponding `if` block contain a return. * * #### Example *