@@ -940,22 +940,22 @@ namespace ts {
940
940
break ;
941
941
942
942
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
945
945
token = findPrecedingMatchingToken ( token , SyntaxKind . OpenBraceToken , sourceFile ) ;
946
946
if ( ! token ) return false ;
947
947
break ;
948
948
949
949
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
952
952
token = findPrecedingMatchingToken ( token , SyntaxKind . OpenParenToken , sourceFile ) ;
953
953
if ( ! token ) return false ;
954
954
break ;
955
955
956
956
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
959
959
token = findPrecedingMatchingToken ( token , SyntaxKind . OpenBracketToken , sourceFile ) ;
960
960
if ( ! token ) return false ;
961
961
break ;
0 commit comments