Skip to content

Commit f1d7a8a

Browse files
committed
Update version
1 parent 409311f commit f1d7a8a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "typescript",
33
"author": "Microsoft Corp.",
44
"homepage": "http://typescriptlang.org/",
5-
"version": "2.1.4",
5+
"version": "2.1.5",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [

src/compiler/core.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace ts {
55
/** The version of the TypeScript compiler release */
6-
export const version = "2.1.4";
6+
export const version = "2.1.5";
77
}
88

99
/* @internal */
@@ -1201,7 +1201,7 @@ namespace ts {
12011201
if (b === undefined) return Comparison.GreaterThan;
12021202
if (ignoreCase) {
12031203
if (collator && String.prototype.localeCompare) {
1204-
// accent means a b, a ≠ á, a = A
1204+
// accent means a ? b, a ? a´, a = A
12051205
const result = a.localeCompare(b, /*locales*/ undefined, { usage: "sort", sensitivity: "accent" });
12061206
return result < 0 ? Comparison.LessThan : result > 0 ? Comparison.GreaterThan : Comparison.EqualTo;
12071207
}

0 commit comments

Comments
 (0)