diff options
author | 2012-11-19 00:28:48 -0500 | |
---|---|---|
committer | 2012-11-19 00:28:48 -0500 | |
commit | 9cdaf41a724dd0d739611c698e92f4421a2fbafc (patch) | |
tree | e762a51e4e8e9f9d20ddd2228e81c37bc7e6b920 /doc | |
parent | a5181b448b2d3f2d3db6dd40b40c7471602763a9 (diff) | |
download | textadept-9cdaf41a724dd0d739611c698e92f4421a2fbafc.tar.gz textadept-9cdaf41a724dd0d739611c698e92f4421a2fbafc.zip |
Changed Lua code style for tables.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/markdowndoc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/markdowndoc.lua b/doc/markdowndoc.lua index 1ae9f929..e9dc5577 100644 --- a/doc/markdowndoc.lua +++ b/doc/markdowndoc.lua @@ -92,7 +92,7 @@ end -- @param list The LuaDoc list. local function write_list(f, fmt, list) if not list or #list == 0 then return end - if type(list) == 'string' then list = { list } end + if type(list) == 'string' then list = {list} end f:write(string_format(LIST_TITLE, titles[fmt])) for _, value in ipairs(list) do if fmt ~= SEE then |