aboutsummaryrefslogtreecommitdiff
path: root/core/args.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/args.lua')
-rw-r--r--core/args.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/args.lua b/core/args.lua
index a7c56c90..1a410ba4 100644
--- a/core/args.lua
+++ b/core/args.lua
@@ -28,7 +28,7 @@ local switches = {}
-- @param description Description of the switch for command line help.
-- @name register
function M.register(switch1, switch2, narg, f, description)
- local t = { f, narg, description }
+ local t = {f, narg, description}
switches[switch1], switches[switch2] = t, t
end