diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-03 13:58:51 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-03 13:58:51 +0000 |
commit | 85b3ee12c2d67451f8355ddd3111ab347ca2312b (patch) | |
tree | fb55f3b2b35fa7a32871272b528391fe4003ba98 | |
parent | 1effb4b3399fbf3e25648b41c0e05efc7f312dce (diff) |
* luci/libs/httpprotocol: remove internal functions from lucidoc
-rw-r--r-- | libs/http/luasrc/http/protocol.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/http/luasrc/http/protocol.lua b/libs/http/luasrc/http/protocol.lua index c45578470..ab696d58c 100644 --- a/libs/http/luasrc/http/protocol.lua +++ b/libs/http/luasrc/http/protocol.lua @@ -131,7 +131,7 @@ function urlencode_params( tbl ) return enc end ---- (Internal function) +-- (Internal function) -- Initialize given parameter and coerce string into table when the parameter -- already exists. -- @param tbl Table where parameter should be created @@ -147,7 +147,7 @@ local function __initval( tbl, key ) end end ---- (Internal function) +-- (Internal function) -- Append given data to given parameter, either by extending the string value -- or by appending it to the last string in the parameter's value table. -- @param tbl Table containing the previously initialized parameter value @@ -163,7 +163,7 @@ local function __appendval( tbl, key, chunk ) end end ---- (Internal function) +-- (Internal function) -- Finish the value of given parameter, either by transforming the string value -- or - in the case of multi value parameters - the last element in the -- associated values table. |