From 055b80dc89bba2a5ab22f7a27deb40135b5cacfa Mon Sep 17 00:00:00 2001 From: Kyle Shevlin Date: Mon, 3 Feb 2020 16:45:13 -0800 Subject: [PATCH] Chore: Fix typo in complexity.js (#12864) --- lib/rules/complexity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rules/complexity.js b/lib/rules/complexity.js index 91180e98954..7fc8bf9bc2e 100644 --- a/lib/rules/complexity.js +++ b/lib/rules/complexity.js @@ -1,6 +1,6 @@ /** * @fileoverview Counts the cyclomatic complexity of each function of the script. See http://en.wikipedia.org/wiki/Cyclomatic_complexity. - * Counts the number of if, conditional, for, whilte, try, switch/case, + * Counts the number of if, conditional, for, while, try, switch/case, * @author Patrick Brosset */