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()