diff options
author | Steven Barth <steven@midlink.org> | 2008-07-25 11:52:04 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-07-25 11:52:04 +0000 |
commit | a91f1a7e376ac6183859c726091191d3d3d6025f (patch) | |
tree | a20d2dc36fad7c255cc111a6d80fcdec6383126a /libs/uci | |
parent | 714d72296147941029a72b63524ad199ae08c737 (diff) |
libs/core, libs/uci, libs/web: Fixed several inline documentation typos
Diffstat (limited to 'libs/uci')
-rw-r--r-- | libs/uci/luasrc/model/uci.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/uci/luasrc/model/uci.lua b/libs/uci/luasrc/model/uci.lua index b4d385960..02bcbe99c 100644 --- a/libs/uci/luasrc/model/uci.lua +++ b/libs/uci/luasrc/model/uci.lua @@ -29,6 +29,7 @@ local setmetatable, rawget, rawset = setmetatable, rawget, rawset local error, pairs, ipairs, tostring = error, pairs, ipairs, tostring local table = table +--- LuCI UCI model library. module("luci.model.uci", function(m) setmetatable(m, {__index = uci}) end) savedir_default = "/tmp/.uci" @@ -204,4 +205,4 @@ end -- @param config UCI config -- @return Boolean whether operation succeeded -- @see load --- @see save
\ No newline at end of file +-- @see save |