Fixing term ordering bug

This commit is contained in:
Alex Yatskov 2016-05-09 14:33:28 -07:00
parent b2f508898c
commit 5359ea983e

View File

@ -122,7 +122,7 @@ class Translator {
const rl2 = v2.rules.length;
if (rl1 < rl2) {
return -1;
} else if (rl2 > rl1) {
} else if (rl1 > rl2) {
return 1;
}