1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-10 11:55:45 +01:00

s/\bset\b/Set/g

This commit is contained in:
Kris Maglione
2011-07-16 18:51:59 -04:00
parent 328b992969
commit 9002a78d14
29 changed files with 144 additions and 129 deletions

View File

@@ -131,7 +131,7 @@ var AbbrevHive = Class("AbbrevHive", Contexts.Hive, {
*/
get: function (mode, lhs) {
let abbrevs = this._store[mode];
return abbrevs && set.has(abbrevs, lhs) ? abbrevs[lhs] : null;
return abbrevs && Set.has(abbrevs, lhs) ? abbrevs[lhs] : null;
},
/**