Skip to content

Commit 27d0b9f

Browse files
committed
Minor name change
1 parent 7bc3b73 commit 27d0b9f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/compiler/core.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1506,7 +1506,7 @@ namespace ts {
15061506
}
15071507

15081508
// Gets string comparers compatible with the current host
1509-
function createCaseInsensitiveStringComparers() {
1509+
function createCaseInsensitiveStringCollator() {
15101510
function createIntlStringCollator(): StringCollator {
15111511
// Strings that differ in base or accents/diacritic marks compare as unequal.
15121512
// An `undefined` locale uses the default locale of the host.
@@ -1570,7 +1570,7 @@ namespace ts {
15701570
return createOrdinalStringCollator();
15711571
}
15721572

1573-
const caseInsensitiveCollator = createCaseInsensitiveStringComparers();
1573+
const caseInsensitiveCollator = createCaseInsensitiveStringCollator();
15741574

15751575
/**
15761576
* Performs a case-insensitive comparison between two strings.

0 commit comments

Comments
 (0)