Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(474)

Unified Diff: lib/src/comparators.dart

Issue 1458853006: Bad z/Z ASCII value. (Closed) Base URL: https://github.com/dart-lang/collection.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/comparators.dart
diff --git a/lib/src/comparators.dart b/lib/src/comparators.dart
index 19b70e94ccdfeb0a3eeecca9016f08cc80a95a8f..05615ba1b9f5f48453533e35cf09d8fcd9d5f78e 100644
--- a/lib/src/comparators.dart
+++ b/lib/src/comparators.dart
@@ -7,9 +7,9 @@ library dart.pkg.collection.comparators;
// Character constants.
const int _zero = 0x30;
const int _upperCaseA = 0x41;
-const int _upperCaseZ = 0x5b;
+const int _upperCaseZ = 0x5a;
const int _lowerCaseA = 0x61;
-const int _lowerCaseZ = 0x7b;
+const int _lowerCaseZ = 0x7a;
const int _asciiCaseBit = 0x20;
/// Checks if strings [a] and [b] differ only on the case of ASCII letters.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698