aboutsummaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2016-05-17 22:00:38 -0700
committerAlex Yatskov <alex@foosoft.net>2016-05-17 22:00:38 -0700
commita39feb66dba77dbbeece7850f2044372b066213d (patch)
tree85291a76a7558a4b6c83d9ac46a2369d4df42199 /ext
parent3a656a80099a89471f5c28d453c3de968538c045 (diff)
Reverse sort order
Diffstat (limited to 'ext')
-rw-r--r--ext/bg/js/translator.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/translator.js b/ext/bg/js/translator.js
index 1c397780..c80964e7 100644
--- a/ext/bg/js/translator.js
+++ b/ext/bg/js/translator.js
@@ -126,7 +126,7 @@ class Translator {
return 1;
}
- return v2.expression.localeCompare(v1.expression);
+ return v1.expression.localeCompare(v2.expression);
});
let length = 0;