File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3258,7 +3258,7 @@ module ts {
32583258 return Tristate . True ;
32593259 }
32603260
3261- // If we had something like "(" followed by something that's not an identifier,
3261+ // If we had "(" followed by something that's not an identifier,
32623262 // then this definitely doesn't look like a lambda.
32633263 // Note: we could be a little more lenient and allow
32643264 // "(public" or "(private". These would not ever actually be allowed,
@@ -3267,7 +3267,7 @@ module ts {
32673267 return Tristate . False ;
32683268 }
32693269
3270- // If we have something like "(a:", then we may have a
3270+ // If we have something like "(a:", then we must have a
32713271 // type-annotated parameter in an arrow function expression.
32723272 if ( nextToken ( ) === SyntaxKind . ColonToken ) {
32733273 return Tristate . True ;
You can’t perform that action at this time.
0 commit comments