summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-07-25 11:52:04 +0000
committerSteven Barth <steven@midlink.org>2008-07-25 11:52:04 +0000
commita91f1a7e376ac6183859c726091191d3d3d6025f (patch)
treea20d2dc36fad7c255cc111a6d80fcdec6383126a /libs
parent714d72296147941029a72b63524ad199ae08c737 (diff)
libs/core, libs/uci, libs/web: Fixed several inline documentation typos
Diffstat (limited to 'libs')
-rw-r--r--libs/core/luasrc/bits.lua2
-rw-r--r--libs/uci/luasrc/model/uci.lua3
-rw-r--r--libs/web/luasrc/http.lua1
3 files changed, 4 insertions, 2 deletions
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")