Commit b79b2458 authored by Tristan Cavelier's avatar Tristan Cavelier

some typo fixed

parent 9bb3f7e6
......@@ -29,7 +29,7 @@
// }
// conditions:
// - lastest date (ld)/ earliest date (ed)
// - latest date (ld)/ earliest date (ed)
// - greatest number (gn) / lowest number (ln) // 2 > 1
// - alphabeticaly farthest string (afs) / alph.. closest string (acs)
// - greatest version (gv) / lowest version (lv) // '1.10c' > '1.9c'
......@@ -138,7 +138,7 @@
}
return a < b ? -1 : a > b ? 1 : 0;
};
actions['lastest date'] = actions.ld;
actions['latest date'] = actions.ld;
actions.ed = function (a, b) {
return -actions.ld(a, b);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment