1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 17:55:46 +01:00

Add missing semicolons.

This commit is contained in:
Doug Kearns
2009-06-02 16:56:28 +10:00
parent 95dffaf95a
commit 6d7b94daa6
17 changed files with 56 additions and 55 deletions

View File

@@ -307,12 +307,12 @@ function Mappings() //{{{
null,
function (context, obj, args)
{
let mode = args[0]
let mode = args[0];
return util.Array.flatten(
[
[[name, map.description] for ([i, name] in Iterator(map.names))]
for ([i, map] in Iterator(user[mode].concat(main[mode])))
])
]);
}
]);
});