diff options
-rw-r--r-- | src/cowboy_http_req.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cowboy_http_req.erl b/src/cowboy_http_req.erl index 4907503..2f52eeb 100644 --- a/src/cowboy_http_req.erl +++ b/src/cowboy_http_req.erl @@ -173,7 +173,7 @@ body_qs(Req) -> %% Response API. -spec reply(Code::http_status(), Headers::http_headers(), - Body::iolist(), Req::#http_req{}) -> {ok, Req::#http_req{}}. + Body::iodata(), Req::#http_req{}) -> {ok, Req::#http_req{}}. reply(Code, Headers, Body, Req=#http_req{socket=Socket, transport=Transport, connection=Connection, resp_state=waiting}) -> |