aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/guide/req.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-08-25 17:40:37 +0200
committerLoïc Hoguin <[email protected]>2016-08-25 17:40:37 +0200
commitbee1320700eec81e304e2cad137a8a87e869ff98 (patch)
treefbc7000ee69d95ab4f39118705e542d8c118e1f8 /doc/src/guide/req.asciidoc
parent7839f1367194813c70d7e223a476f96a62b298ae (diff)
downloadcowboy-bee1320700eec81e304e2cad137a8a87e869ff98.tar.gz
cowboy-bee1320700eec81e304e2cad137a8a87e869ff98.tar.bz2
cowboy-bee1320700eec81e304e2cad137a8a87e869ff98.zip
Update the body reading chapter
Diffstat (limited to 'doc/src/guide/req.asciidoc')
-rw-r--r--doc/src/guide/req.asciidoc3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/guide/req.asciidoc b/doc/src/guide/req.asciidoc
index 39fcde6..2dd0a86 100644
--- a/doc/src/guide/req.asciidoc
+++ b/doc/src/guide/req.asciidoc
@@ -258,7 +258,8 @@ QsVals = cowboy_req:parse_qs(Req),
Cowboy will only parse the query string, and not do any
transformation. This function may therefore return duplicates,
-or parameter names without an associated value.
+or parameter names without an associated value. The order of
+the list returned is undefined.
When a query string is `key=1&key=2`, the list returned will
contain two parameters of name `key`.