Fix typos in comment

Co-authored-by: Josh Gross <joshmgross@github.com>
This commit is contained in:
Christopher Schleiden
2023-01-19 08:44:37 -08:00
parent e6a2e3eb43
commit c3fb85be5d
+1 -1
View File
@@ -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--;