libs/core, libs/uci, libs/web: Fixed several inline documentation typos

This commit is contained in:
Steven Barth 2008-07-25 11:52:04 +00:00
parent 714d722961
commit a91f1a7e37
3 changed files with 4 additions and 2 deletions

View file

@ -28,7 +28,7 @@
--]] --]]
--- LuCI number conversation and bit manipulation functions. --- LuCI number conversion and bit manipulation functions.
module("luci.bits", package.seeall); module("luci.bits", package.seeall);
local hex2bin = { local hex2bin = {

View file

@ -29,6 +29,7 @@ local setmetatable, rawget, rawset = setmetatable, rawget, rawset
local error, pairs, ipairs, tostring = error, pairs, ipairs, tostring local error, pairs, ipairs, tostring = error, pairs, ipairs, tostring
local table = table local table = table
--- LuCI UCI model library.
module("luci.model.uci", function(m) setmetatable(m, {__index = uci}) end) module("luci.model.uci", function(m) setmetatable(m, {__index = uci}) end)
savedir_default = "/tmp/.uci" savedir_default = "/tmp/.uci"
@ -204,4 +205,4 @@ end
-- @param config UCI config -- @param config UCI config
-- @return Boolean whether operation succeeded -- @return Boolean whether operation succeeded
-- @see load -- @see load
-- @see save -- @see save

View file

@ -24,6 +24,7 @@ limitations under the License.
]]-- ]]--
--- LuCI Web Framework high-level HTTP functions.
module("luci.http", package.seeall) module("luci.http", package.seeall)
local ltn12 = require("luci.ltn12") local ltn12 = require("luci.ltn12")
require("luci.http.protocol") require("luci.http.protocol")