Skip to content

Commit d64c98c

Browse files
committed
Update version
1 parent 3a094e7 commit d64c98c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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.0.9",
5+
"version": "2.0.10",
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
@@ -4,7 +4,7 @@
44
/* @internal */
55
namespace ts {
66

7-
export const version = "2.0.9";
7+
export const version = "2.0.10";
88

99
/**
1010
* Ternary values are defined such that
@@ -717,7 +717,7 @@ namespace ts {
717717
if (b === undefined) return Comparison.GreaterThan;
718718
if (ignoreCase) {
719719
if (collator && String.prototype.localeCompare) {
720-
// accent means a b, a ≠ á, a = A
720+
// accent means a ? b, a ? a´, a = A
721721
const result = a.localeCompare(b, /*locales*/ undefined, { usage: "sort", sensitivity: "accent" });
722722
return result < 0 ? Comparison.LessThan : result > 0 ? Comparison.GreaterThan : Comparison.EqualTo;
723723
}

0 commit comments

Comments
 (0)