diff --git a/tools/chpl-language-server/src/chpl-language-server.py b/tools/chpl-language-server/src/chpl-language-server.py index aaecb03a3d0d..d4863e6f66f9 100755 --- a/tools/chpl-language-server/src/chpl-language-server.py +++ b/tools/chpl-language-server/src/chpl-language-server.py @@ -169,7 +169,7 @@ def is_literal_like(node: chapel.AstNode) -> bool: if isinstance(node, chapel.OpCall): # A complex number is far from a literal in the AST; in fact, it - # potentially has as many as 4 AST nodes: -1 - 2i has a unary negation, + # potentially has as many as 4 AST nodes: -1 + 2i has a unary negation, # an addition, and two "pure" literals. op = node.op() if (op == "+" or op == "-") and node.num_actuals() == 2: