mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-07 05:41:22 -06:00
Fix comment typos in utilities.ts
This commit is contained in:
parent
b85ecd2e20
commit
4cc345e4e0
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user