From: Cory Benfield Date: Tue, 9 Sep 2014 07:44:40 +0000 (+0100) Subject: Request->Response. X-Git-Tag: v2.4.1~2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf8f791a936dbaadb6be33546f41bca50a652ac0;p=services%2Fpython-requests.git Request->Response. --- diff --git a/docs/user/quickstart.rst b/docs/user/quickstart.rst index ff00834..1a4b271 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 ` object called ``r``. We can +Now, we have a :class:`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