Skip to content

Commit 22142d2

Browse files
committed
removing some culturally senstive words
1 parent 8a050ea commit 22142d2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/compiler/checker.ts

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

src/services/services.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2829,7 +2829,7 @@ namespace ts {
28292829
if (oldSourceFile) {
28302830
// We already had a source file for this file name. Go to the registry to
28312831
// ensure that we get the right up to date version of it. We need this to
2832-
// address the following 'race'. Specifically, say we have the following:
2832+
// address the following race-condition. Specifically, say we have the following:
28332833
//
28342834
// LS1
28352835
// \

0 commit comments

Comments
 (0)