diff options
| author | Theodoros Ikonomou <thikonom@gmail.com> | 2014-12-03 22:13:36 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-12-03 18:41:46 -0500 |
| commit | 49d034fff21213b369c08b39772e0437c3cc723b (patch) | |
| tree | 43afd0dad3af624f4c0dd2966dbb6084eb57696a /docs | |
| parent | 560b4207b1490a7d0cbf70cfbeba7daf2082e5be (diff) | |
Fixed typo in docs/ref/request-response.txt.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/request-response.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index 7caa73fc8c..3ae8510ce8 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -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']}> If ``query_string`` is not passed in, the resulting ``QueryDict`` will be empty (it will have no keys or values). |
