diff options
author | Loïc Hoguin <[email protected]> | 2012-09-29 05:20:28 -0700 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-09-29 05:20:28 -0700 |
commit | 1f6c324c3fe3de77e45d3a542ba0182848ed5577 (patch) | |
tree | 43ff9773590921287303522d5954a2688b29e6dc /src | |
parent | 2e0a2a1c9e353d49f2746dfdb503e777c5b6ea6d (diff) | |
parent | 9393613214d45dc462a67a1d6dac8e0d83d32c4e (diff) | |
download | cowboy-1f6c324c3fe3de77e45d3a542ba0182848ed5577.tar.gz cowboy-1f6c324c3fe3de77e45d3a542ba0182848ed5577.tar.bz2 cowboy-1f6c324c3fe3de77e45d3a542ba0182848ed5577.zip |
Merge pull request #254 from billiob/master
fix typo in doc
Diffstat (limited to 'src')
-rw-r--r-- | src/cowboy_req.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cowboy_req.erl b/src/cowboy_req.erl index 65e131f..cdd1e06 100644 --- a/src/cowboy_req.erl +++ b/src/cowboy_req.erl @@ -733,7 +733,7 @@ skip_body(Req) -> {error, Reason} -> {error, Reason} end. -%% @doc Return the full body sent with the reqest, parsed as an +%% @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) |