From 77a7d5821aded4a07958235ab397163a397f2e84 Mon Sep 17 00:00:00 2001 From: Jade Abraham Date: Wed, 11 Sep 2024 09:40:27 -0700 Subject: [PATCH] fix spelling Signed-off-by: Jade Abraham --- tools/chplcheck/src/rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/chplcheck/src/rules.py b/tools/chplcheck/src/rules.py index 4bd42fe035f7..7ff472f6e080 100644 --- a/tools/chplcheck/src/rules.py +++ b/tools/chplcheck/src/rules.py @@ -289,7 +289,7 @@ def RemoveControlFlowParentheses(context: Context, result: BasicRuleResult): paren_loc = subject.parenth_location() assert paren_loc - # If parentheeses span multiple lines, don't provide a fixit, + # If parentheses span multiple lines, don't provide a fixit, # since the indentation would need more thought. start_line, start_col = paren_loc.start() end_line, end_col = paren_loc.end()