diff options
author | Loïc Hoguin <[email protected]> | 2013-01-18 18:18:29 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-01-18 18:21:28 +0100 |
commit | 09c68ca755d685183c10d1a406844603e7bcf43b (patch) | |
tree | 7af40d24e542db1b87a58bce6ddd26eebfdf92d8 /src/cowboy_req.erl | |
parent | acd6847d3df2d0bca923918bdc5040e9b68c9b3f (diff) | |
download | cowboy-09c68ca755d685183c10d1a406844603e7bcf43b.tar.gz cowboy-09c68ca755d685183c10d1a406844603e7bcf43b.tar.bz2 cowboy-09c68ca755d685183c10d1a406844603e7bcf43b.zip |
Remove a few old @todo comments
Diffstat (limited to 'src/cowboy_req.erl')
-rw-r--r-- | src/cowboy_req.erl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cowboy_req.erl b/src/cowboy_req.erl index 89758dd..4782eed 100644 --- a/src/cowboy_req.erl +++ b/src/cowboy_req.erl @@ -728,7 +728,6 @@ skip_body(Req) -> %% @doc Return the full body sent with the request, parsed as an %% application/x-www-form-urlencoded string. Essentially a POST query string. -%% @todo We need an option to limit the size of the body for QS too. -spec body_qs(Req) -> {ok, [{binary(), binary() | true}], Req} | {error, atom()} when Req::req(). @@ -765,7 +764,6 @@ multipart_data(Req=#http_req{multipart={Length, Cont}}) -> multipart_data(Req=#http_req{body_state=done}) -> {eof, Req}. -%% @todo Typespecs. multipart_data(Req, Length, {headers, Headers, Cont}) -> {headers, Headers, Req#http_req{multipart={Length, Cont}}}; multipart_data(Req, Length, {body, Data, Cont}) -> |