1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 08:17:59 +01:00

whitespace and semicolon fixes

This commit is contained in:
Doug Kearns
2008-11-02 11:54:56 +00:00
parent d52466188e
commit 6dfc33035b
12 changed files with 41 additions and 40 deletions

View File

@@ -216,7 +216,7 @@ function Commands() //{{{
["int", parseInt],
["float", parseFloat],
["list", function (arg) arg && arg.split(/\s*,\s*/)]
].map(function (x) x && ArgType.apply(null, x));;
].map(function (x) x && ArgType.apply(null, x));
/////////////////////////////////////////////////////////////////////////////}}}
////////////////////// PUBLIC SECTION //////////////////////////////////////////