libs/core, libs/uci, libs/web: Fixed several inline documentation typos
authorSteven Barth <steven@midlink.org>
Fri, 25 Jul 2008 11:52:04 +0000 (11:52 +0000)
committerSteven Barth <steven@midlink.org>
Fri, 25 Jul 2008 11:52:04 +0000 (11:52 +0000)
libs/core/luasrc/bits.lua
libs/uci/luasrc/model/uci.lua
libs/web/luasrc/http.lua

index 3b24138..20cd1d5 100644 (file)
@@ -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 = {
index b4d3859..02bcbe9 100644 (file)
@@ -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
index 154f51a..e26b3b5 100644 (file)
@@ -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")