* luci/libs/httpprotocol: remove internal functions from lucidoc
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 3 Oct 2008 13:58:51 +0000 (13:58 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 3 Oct 2008 13:58:51 +0000 (13:58 +0000)
libs/http/luasrc/http/protocol.lua

index c455784..ab696d5 100644 (file)
@@ -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.