Fixing term ordering bug
This commit is contained in:
parent
b2f508898c
commit
5359ea983e
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user