aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2007-09-02 13:33:48 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2007-09-02 13:33:48 -0500
commit4aef4464d02f3da12377028ca32e4fb3357fb94e (patch)
tree73ee0e1f6f0002623891261b206cecf3c7cfacba
parent1d6efd7062f550dc8a626155bfc8ada3578ab6ae (diff)
downloadluairc-4aef4464d02f3da12377028ca32e4fb3357fb94e.tar.gz
luairc-4aef4464d02f3da12377028ca32e4fb3357fb94e.zip
start documentation using LuaDoc
-rw-r--r--src/irc.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/irc.lua b/src/irc.lua
index 3706270..4264458 100644
--- a/src/irc.lua
+++ b/src/irc.lua
@@ -1,3 +1,6 @@
+---
+-- Implementation of the main LuaIRC module
+
-- initialization {{{
local base = _G
local constants = require 'irc.constants'
@@ -10,6 +13,9 @@ local string = require 'string'
local table = require 'table'
-- }}}
+---
+-- LuaIRC - IRC framework written in Lua
+-- @release 0.02
module 'irc'
-- constants {{{