Kaydet (Commit) 49d034ff authored tarafından Theodoros Ikonomou's avatar Theodoros Ikonomou Kaydeden (comit) Tim Graham

Fixed typo in docs/ref/request-response.txt.

üst 560b4207
...@@ -367,7 +367,7 @@ a subclass of dictionary. Exceptions are outlined here: ...@@ -367,7 +367,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']}>
If ``query_string`` is not passed in, the resulting ``QueryDict`` will be If ``query_string`` is not passed in, the resulting ``QueryDict`` will be
empty (it will have no keys or values). empty (it will have no keys or values).
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment