summaryrefslogtreecommitdiff
path: root/django/http/__init__.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-07-03 18:29:56 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-07-03 18:29:56 +0000
commit1feda14c8e14eb4d716d725a58add6dbbb04bd5f (patch)
tree1c58a992a4310d23dcb9c93be49258a3b3b5e0d8 /django/http/__init__.py
parentc62d6eea19a1e3737ceb2af7f2f75fe727c51906 (diff)
unicode: Made some documentation edits and inconsequential typo fixes throughout code
git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5597 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/http/__init__.py')
-rw-r--r--django/http/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py
index 76f9246ca6..14acd9afde 100644
--- a/django/http/__init__.py
+++ b/django/http/__init__.py
@@ -50,7 +50,7 @@ class HttpRequest(object):
def _set_encoding(self, val):
"""
Sets the encoding used for GET/POST accesses. If the GET or POST
- dictionary has already been created it is removed and recreated on the
+ dictionary has already been created, it is removed and recreated on the
next access (so that it is decoded correctly).
"""
self._encoding = val
@@ -101,7 +101,7 @@ class QueryDict(MultiValueDict):
This is immutable unless you create a copy of it.
Values retrieved from this class are converted from the default encoding to
- unicode (this is done on retrieval, rather than input to avoid breaking
+ unicode (this is done on retrieval, rather than input, to avoid breaking
references or mutating referenced objects).
"""
def __init__(self, query_string, mutable=False, encoding=None):