diff options
author | 2020-02-26 11:17:28 -0500 | |
---|---|---|
committer | 2020-02-26 11:17:28 -0500 | |
commit | a291022fbd9dbc749508917dfa10f40ad0323436 (patch) | |
tree | 9f416f97c34af75663872cbe975ec874ebcf0ae6 /core/args.lua | |
parent | 3fe371c20fbb9fd90a9c98d1d0616c87d862beed (diff) | |
download | textadept-a291022fbd9dbc749508917dfa10f40ad0323436.tar.gz textadept-a291022fbd9dbc749508917dfa10f40ad0323436.zip |
Fixed some documentation.
Diffstat (limited to 'core/args.lua')
-rw-r--r-- | core/args.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/args.lua b/core/args.lua index c9eb3116..0dbf0efb 100644 --- a/core/args.lua +++ b/core/args.lua @@ -24,7 +24,8 @@ local switches = {} -- @param short The string short version of the switch. -- @param long The string long version of the switch. -- @param narg The number of expected parameters for the switch. --- @param f The Lua function to run when the switch is tripped. +-- @param f The Lua function to run when the switch is tripped. It is passed +-- *narg* string arguments. -- @param description The string description of the switch for command line -- help. -- @name register |