summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/request-response.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt
index ca243cbf37..a91e28c34f 100644
--- a/docs/ref/request-response.txt
+++ b/docs/ref/request-response.txt
@@ -588,8 +588,8 @@ In addition, ``QueryDict`` has the following methods:
.. method:: QueryDict.getlist(key, default=None)
Returns a list of the data with the requested key. Returns an empty list if
- the key doesn't exist and a default value wasn't provided. It's guaranteed
- to return a list unless the default value provided isn't a list.
+ the key doesn't exist and ``default`` is ``None``. It's guaranteed to
+ return a list unless the default value provided isn't a list.
.. method:: QueryDict.setlist(key, list_)