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 3b241388a0eb42f6573558485a9ffa7fa7c19ebb..20cd1d53e4884de8ebcaafa297ae851142817cbe 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 b4d385960a4068d105b96575b9c4864cb4b03c82..02bcbe99c90aaddc65cfcf88ec7dbc9ee896da04 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 154f51ac403a368dd1af22b42f0e56812c504494..e26b3b5dbb777adcd5193a35e5044ea1d7ceb0a5 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")