Skip to content

Commit 9d65642

Browse files
committed
Merge pull request #7164 from Microsoft/wordCleanup
removing some culturally sensitive words
2 parents 11ec01b + 22142d2 commit 9d65642

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12250,7 +12250,7 @@ namespace ts {
1225012250
seen = c === node;
1225112251
}
1225212252
});
12253-
// We may be here because of some extra junk between overloads that could not be parsed into a valid node.
12253+
// We may be here because of some extra nodes between overloads that could not be parsed into a valid node.
1225412254
// In this case the subsequent node is not really consecutive (.pos !== node.end), and we must ignore it here.
1225512255
if (subsequentNode && subsequentNode.pos === node.end) {
1225612256
if (subsequentNode.kind === node.kind) {

src/services/services.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2838,7 +2838,7 @@ namespace ts {
28382838
if (oldSourceFile) {
28392839
// We already had a source file for this file name. Go to the registry to
28402840
// ensure that we get the right up to date version of it. We need this to
2841-
// address the following 'race'. Specifically, say we have the following:
2841+
// address the following race-condition. Specifically, say we have the following:
28422842
//
28432843
// LS1
28442844
// \

0 commit comments

Comments
 (0)