Update doc[ci skip]

master
Alexey Melnichuk 2014-09-15 13:20:08 +05:00
parent aff3042434
commit 7efaba4ff2
2 changed files with 3 additions and 2 deletions

View File

@ -131,6 +131,7 @@ do
-- <br/>Returned data types: `response`, `header`, `data`, `error`, `done`.
-- <br/>Note. response data may appeare several times (e.g. if you proceed http request
-- with digest auth you should get 401 and 200 responses).
-- <br/> Easy handle is removed at the end of the operation (when get `done` or `error` row).
--
-- @treturn Iterator iterator for generic for
--

View File

@ -12,6 +12,6 @@ local f1 = io.open("lua.html", "w+b")
local f2 = io.open("luajit.html", "w+b")
for data, type, easy in m:iperform() do
if type == "data" and c1 == easy then f1:write(data) end
if type == "data" and c2 == easy then f2:write(data) end
if type == "data" and c1 == easy then f1:write(data) end
if type == "data" and c2 == easy then f2:write(data) end
end