From 4cc345e4e0684a3f59e17232c7ddd313f3997429 Mon Sep 17 00:00:00 2001 From: Alex Ryan Date: Tue, 8 May 2018 14:58:18 -0700 Subject: [PATCH] Fix comment typos in utilities.ts --- src/services/utilities.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/services/utilities.ts b/src/services/utilities.ts index d5694c936de..3d50ded1886 100644 --- a/src/services/utilities.ts +++ b/src/services/utilities.ts @@ -940,22 +940,22 @@ namespace ts { break; case SyntaxKind.CloseBraceToken: - // This can be object type, skip untill we find the matching open brace token - // Skip untill the matching open brace token + // This can be object type, skip until we find the matching open brace token + // Skip until the matching open brace token token = findPrecedingMatchingToken(token, SyntaxKind.OpenBraceToken, sourceFile); if (!token) return false; break; case SyntaxKind.CloseParenToken: - // This can be object type, skip untill we find the matching open brace token - // Skip untill the matching open brace token + // This can be object type, skip until we find the matching open brace token + // Skip until the matching open brace token token = findPrecedingMatchingToken(token, SyntaxKind.OpenParenToken, sourceFile); if (!token) return false; break; case SyntaxKind.CloseBracketToken: - // This can be object type, skip untill we find the matching open brace token - // Skip untill the matching open brace token + // This can be object type, skip until we find the matching open brace token + // Skip until the matching open brace token token = findPrecedingMatchingToken(token, SyntaxKind.OpenBracketToken, sourceFile); if (!token) return false; break;