From e948d7074abe250f0508ae0c77851dce06a0baac Mon Sep 17 00:00:00 2001 From: Sander Boom Date: Tue, 31 May 2016 14:22:22 +0200 Subject: [PATCH] Docs: Fix small typo in require-early-return (#2259) --- lib/rules/require-early-return.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 *