From c3fb85be5d4e057a0567139fd44ac89e7d459b61 Mon Sep 17 00:00:00 2001 From: Christopher Schleiden Date: Thu, 19 Jan 2023 08:44:37 -0800 Subject: [PATCH] Fix typos in comment Co-authored-by: Josh Gross --- actions-expressions/src/completion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions-expressions/src/completion.ts b/actions-expressions/src/completion.ts index 252bb44..dfb6d7b 100644 --- a/actions-expressions/src/completion.ts +++ b/actions-expressions/src/completion.ts @@ -141,7 +141,7 @@ export function trimTokenVector(tokenVector: Token[]): Token[] { switch (token.type) { case TokenType.LEFT_PAREN: if (openParen == 0) { - // Encounterend an open parenthesis witout a closing first, stop here + // Encountered an open parenthesis without a closing first, stop here break; } tokenIdx--;