diff options
Diffstat (limited to 'Data/Libraries/LDoc/tests/submodule/mylib/init.lua')
-rw-r--r-- | Data/Libraries/LDoc/tests/submodule/mylib/init.lua | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Data/Libraries/LDoc/tests/submodule/mylib/init.lua b/Data/Libraries/LDoc/tests/submodule/mylib/init.lua new file mode 100644 index 0000000..83bc90a --- /dev/null +++ b/Data/Libraries/LDoc/tests/submodule/mylib/init.lua @@ -0,0 +1,35 @@ +----------- +-- Main module. +-- This contains four functions, two of which are in +-- another section implicitly specified using the 'within' tag. +-- (This allows functions placed together to be classified +-- separately) +-- +-- Furthermore, the 'mylib.extra' functions will be added +-- as their own section, allowing you to document a logical module +-- spanning several files +-- +-- @module mylib + +--- first. +function A () + +end + +--- second, within its own section. +-- @within Utilities +function B () + +end + +--- third. +function C () + +end + +--- fourth, together with second. +-- @within Utilities +function D () + +end + |