summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCory Benfield <lukasaoz@gmail.com>2014-09-09 08:44:40 +0100
committerCory Benfield <lukasaoz@gmail.com>2014-09-09 08:44:40 +0100
commitbf8f791a936dbaadb6be33546f41bca50a652ac0 (patch)
treedb7b8c028ca6935209d29ebd817a3f6abf23367a
parent359659cf4b9dbeeef1ed832501dc1f99b0f0beac (diff)
downloadpython-requests-bf8f791a936dbaadb6be33546f41bca50a652ac0.tar.gz
Request->Response.
-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 ff008347..1a4b2714 100644
--- a/docs/user/quickstart.rst
+++ b/docs/user/quickstart.rst
@@ -31,7 +31,7 @@ timeline ::
>>> r = requests.get('https://api.github.com/events')
-Now, we have a :class:`Request <requests.Request>` object called ``r``. We can
+Now, we have a :class:`Response <requests.Response>` object called ``r``. We can
get all the information we need from this object.
Requests' simple API means that all forms of HTTP request are as obvious. For