moonwave 1.3.0

Moonwave is a tool for generating documentation from comments in Lua source code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
local test

--[=[
	missing doc
]=]
function test:missingDoc(parameter) end

--[=[
	extra param

	@param fake number -- this is a fake param
]=]
function test:extraParam(real: string) end