From: Steven Barth Date: Fri, 25 Jul 2008 11:52:04 +0000 (+0000) Subject: libs/core, libs/uci, libs/web: Fixed several inline documentation typos X-Git-Tag: 0.8.0~576 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=a91f1a7e376ac6183859c726091191d3d3d6025f;hp=714d72296147941029a72b63524ad199ae08c737 libs/core, libs/uci, libs/web: Fixed several inline documentation typos --- diff --git a/libs/core/luasrc/bits.lua b/libs/core/luasrc/bits.lua index 3b241388a..20cd1d53e 100644 --- a/libs/core/luasrc/bits.lua +++ b/libs/core/luasrc/bits.lua @@ -28,7 +28,7 @@ --]] ---- LuCI number conversation and bit manipulation functions. +--- LuCI number conversion and bit manipulation functions. module("luci.bits", package.seeall); local hex2bin = { 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 diff --git a/libs/web/luasrc/http.lua b/libs/web/luasrc/http.lua index 154f51ac4..e26b3b5db 100644 --- a/libs/web/luasrc/http.lua +++ b/libs/web/luasrc/http.lua @@ -24,6 +24,7 @@ limitations under the License. ]]-- +--- LuCI Web Framework high-level HTTP functions. module("luci.http", package.seeall) local ltn12 = require("luci.ltn12") require("luci.http.protocol")