[1.6.x] Fixed typo in docs/ref/request-response.txt.
Backport of 49d034fff2
from master
This commit is contained in:
parent
2fd16232b1
commit
51dff0f588
|
@ -393,7 +393,7 @@ a subclass of dictionary. Exceptions are outlined here:
|
||||||
Instantiates a ``QueryDict`` object based on ``query_string``.
|
Instantiates a ``QueryDict`` object based on ``query_string``.
|
||||||
|
|
||||||
>>> QueryDict('a=1&a=2&c=3')
|
>>> 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
|
Most ``QueryDict``\ s you encounter, and in particular those at
|
||||||
``request.POST`` and ``request.GET``, will be immutable. If you are
|
``request.POST`` and ``request.GET``, will be immutable. If you are
|
||||||
|
|
Loading…
Reference in New Issue