Skip to content

Commit 88e8526

Browse files
authored
Merge pull request microsoft#23981 from ialexryan/patch-4
Fix comment typos in utilities.ts
2 parents b85ecd2 + 4cc345e commit 88e8526

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/services/utilities.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -940,22 +940,22 @@ namespace ts {
940940
break;
941941

942942
case SyntaxKind.CloseBraceToken:
943-
// This can be object type, skip untill we find the matching open brace token
944-
// Skip untill the matching open brace token
943+
// This can be object type, skip until we find the matching open brace token
944+
// Skip until the matching open brace token
945945
token = findPrecedingMatchingToken(token, SyntaxKind.OpenBraceToken, sourceFile);
946946
if (!token) return false;
947947
break;
948948

949949
case SyntaxKind.CloseParenToken:
950-
// This can be object type, skip untill we find the matching open brace token
951-
// Skip untill the matching open brace token
950+
// This can be object type, skip until we find the matching open brace token
951+
// Skip until the matching open brace token
952952
token = findPrecedingMatchingToken(token, SyntaxKind.OpenParenToken, sourceFile);
953953
if (!token) return false;
954954
break;
955955

956956
case SyntaxKind.CloseBracketToken:
957-
// This can be object type, skip untill we find the matching open brace token
958-
// Skip untill the matching open brace token
957+
// This can be object type, skip until we find the matching open brace token
958+
// Skip until the matching open brace token
959959
token = findPrecedingMatchingToken(token, SyntaxKind.OpenBracketToken, sourceFile);
960960
if (!token) return false;
961961
break;

0 commit comments

Comments
 (0)