aboutsummaryrefslogtreecommitdiff
path: root/scripts/adeptsensedoc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/adeptsensedoc.lua')
-rw-r--r--scripts/adeptsensedoc.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/adeptsensedoc.lua b/scripts/adeptsensedoc.lua
index 1f8cdcc3..cfae8898 100644
--- a/scripts/adeptsensedoc.lua
+++ b/scripts/adeptsensedoc.lua
@@ -64,7 +64,13 @@ local function write_apidoc(file, m, b)
end
end
-- Function returns (@return).
- if b.class == 'function' and b.ret then doc[#doc + 1] = '@return '..b.ret end
+ if b.class == 'function' and b.ret then
+ if type(b.ret) == 'string' then
+ doc[#doc + 1] = '@return '..b.ret
+ else
+ for _, u in ipairs(b.ret) do doc[#doc + 1] = '@return '..u end
+ end
+ end
-- See also (@see).
if b.see then
if type(b.see) == 'string' then