diff options
| author | Marc Tamlyn <marc.tamlyn@gmail.com> | 2013-05-19 11:24:17 +0200 |
|---|---|---|
| committer | Marc Tamlyn <marc.tamlyn@gmail.com> | 2013-05-19 11:24:36 +0200 |
| commit | 413735b239239bc8ff38ee893e8448daf9b2bff6 (patch) | |
| tree | 3639a1ecb7e4a6a07e4c1fad7dad00aa4216114c /django/utils | |
| parent | d9c01da1f8ba3d4e0947fd1d619c8f4a9b013360 (diff) | |
Fix a typo in a comment.
Diffstat (limited to 'django/utils')
| -rw-r--r-- | django/utils/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/http.py b/django/utils/http.py index 9897df4fb0..f4911b4ec0 100644 --- a/django/utils/http.py +++ b/django/utils/http.py @@ -71,7 +71,7 @@ urlunquote_plus = allow_lazy(urlunquote_plus, six.text_type) def urlencode(query, doseq=0): """ A version of Python's urllib.urlencode() function that can operate on - unicode strings. The parameters are first case to UTF-8 encoded strings and + unicode strings. The parameters are first cast to UTF-8 encoded strings and then encoded as per normal. """ if isinstance(query, MultiValueDict): |
