summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorI am Clinton <garwoodpr@users.noreply.github.com>2015-05-16 22:04:52 -0500
committerTim Graham <timograham@gmail.com>2015-05-18 09:46:09 -0400
commit436f914dc5451557990629b4ff1c32f67c67002f (patch)
tree6af01ba75295c05535232c07ac10dc10fe9b3078 /docs/ref
parentcc4ee06279a408d033e30bade774f3c6715bfe3e (diff)
[1.8.x] Fixed typos in docs/ref/request-response.txt
Backport of e4f0e5a981e1965bd6b6b5d51f87499fa5f780b3 from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/request-response.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt
index b547d7a6a8..44f5b9c65c 100644
--- a/docs/ref/request-response.txt
+++ b/docs/ref/request-response.txt
@@ -51,7 +51,7 @@ All attributes should be considered read-only, unless stated otherwise below.
.. attribute:: HttpRequest.path
A string representing the full path to the requested page, not including
- the domain.
+ the scheme or domain.
Example: ``"/music/bands/the_beatles/"``
@@ -331,7 +331,7 @@ Methods
Methods implementing a file-like interface for reading from an
HttpRequest instance. This makes it possible to consume an incoming
request in a streaming fashion. A common use-case would be to process a
- big XML payload with iterative parser without constructing a whole
+ big XML payload with an iterative parser without constructing a whole
XML tree in memory.
Given this standard interface, an HttpRequest instance can be
@@ -473,7 +473,7 @@ In addition, ``QueryDict`` has the following methods:
Returns the data with the requested key, as a Python list. Returns an
empty list if the key doesn't exist and no default value was provided.
It's guaranteed to return a list of some sort unless the default value
- was no list.
+ provided is not a list.
.. method:: QueryDict.setlist(key, list_)
@@ -739,7 +739,7 @@ Methods
header. It is not part of the :rfc:`2109` standard for cookies,
and it isn't honored consistently by all browsers. However,
when it is honored, it can be a useful way to mitigate the
- risk of client side script accessing the protected cookie
+ risk of a client-side script from accessing the protected cookie
data.
.. _HTTPOnly: https://www.owasp.org/index.php/HTTPOnly