summaryrefslogtreecommitdiff
path: root/docs/user
diff options
context:
space:
mode:
authorAidan Feldman <aidan.feldman@gmail.com>2016-11-17 12:21:58 -0500
committerGitHub <noreply@github.com>2016-11-17 12:21:58 -0500
commit5562c0f09714f51c11dadcb544b4f720b338ea5c (patch)
tree057865629dbae9f12930de96d9f60a8d3fb5359c /docs/user
parent5b66b364a755fae3a73f1d09efcc0332478d43c6 (diff)
downloadpython-requests-5562c0f09714f51c11dadcb544b4f720b338ea5c.tar.gz
clarify that the `chunk_size` is optional when streaming to a file
Diffstat (limited to 'docs/user')
-rw-r--r--docs/user/quickstart.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user/quickstart.rst b/docs/user/quickstart.rst
index e6fc61f1..2276f9f1 100644
--- a/docs/user/quickstart.rst
+++ b/docs/user/quickstart.rst
@@ -184,7 +184,7 @@ streamed to a file::
Using ``Response.iter_content`` will handle a lot of what you would otherwise
have to handle when using ``Response.raw`` directly. When streaming a
download, the above is the preferred and recommended way to retrieve the
-content.
+content. Note that `chunk_size` is optional.
Custom Headers