Skip to content

Commit 7efaba4

Browse files
committed
Update doc[ci skip]
1 parent aff3042 commit 7efaba4

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

doc/curl.ldoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ do
131131
-- <br/>Returned data types: `response`, `header`, `data`, `error`, `done`.
132132
-- <br/>Note. response data may appeare several times (e.g. if you proceed http request
133133
-- with digest auth you should get 401 and 200 responses).
134+
-- <br/> Easy handle is removed at the end of the operation (when get `done` or `error` row).
134135
--
135136
-- @treturn Iterator iterator for generic for
136137
--

examples/cURLv3/multi.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ local f1 = io.open("lua.html", "w+b")
1212
local f2 = io.open("luajit.html", "w+b")
1313

1414
for data, type, easy in m:iperform() do
15-
if type == "data" and c1 == easy then f1:write(data) end
16-
if type == "data" and c2 == easy then f2:write(data) end
15+
if type == "data" and c1 == easy then f1:write(data) end
16+
if type == "data" and c2 == easy then f2:write(data) end
1717
end

0 commit comments

Comments
 (0)