[1.7.x] Fixed typo in docs/ref/request-response.txt.

Backport of 49d034fff2 from master
This commit is contained in:
Theodoros Ikonomou 2014-12-03 22:13:36 +00:00 committed by Tim Graham
parent 5219a02fda
commit 82c0c7b34f
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ a subclass of dictionary. Exceptions are outlined here:
Instantiates a ``QueryDict`` object based on ``query_string``.
>>> QueryDict('a=1&a=2&c=3')
<QueryDict: {u'a': [u'1', u'2'], u'b': [u'1']}>
<QueryDict: {'a': ['1', '2'], 'c': ['3']}>
Most ``QueryDict``\ s you encounter, and in particular those at
``request.POST`` and ``request.GET``, will be immutable. If you are