summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Matusiak <numerodix@gmail.com>2014-01-16 22:34:35 +0100
committerMartin Matusiak <numerodix@gmail.com>2014-01-16 22:34:35 +0100
commit63ff03c4ecaaf962710f0fa3801eadef1116bea6 (patch)
treeee48476c7c18f438c16cf26fd3c2d169b3a81142
parentcd69db68cf88703bac25150578bfe4e5d0dbcd3d (diff)
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)):