summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-01-16 13:47:44 -0800
committerTim Graham <timograham@gmail.com>2014-01-16 13:47:44 -0800
commit54d396ff8500b56b81e0b131cd9158359179e5ca (patch)
treed28c1c991d29150d9bdb1995414cb4cf1286b3e3
parent7535e9f4a4f5317a0073a8fde0eacf17ce31bac0 (diff)
parent63ff03c4ecaaf962710f0fa3801eadef1116bea6 (diff)
Merge pull request #2176 from numerodix/master
Fixed typo in docstring.
-rw-r--r--django/http/response.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/response.py b/django/http/response.py
index c590172a9c..f38c4918cd 100644
--- a/django/http/response.py
+++ b/django/http/response.py
@@ -141,7 +141,7 @@ class HttpResponseBase(six.Iterator):
"""Converts headers key/value to ascii/latin-1 native strings.
`charset` must be 'ascii' or 'latin-1'. If `mime_encode` is True and
- `value` value can't be represented in the given charset, MIME-encoding
+ `value` can't be represented in the given charset, MIME-encoding
is applied.
"""
if not isinstance(value, (bytes, six.text_type)):