summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAntonio Dudarev <8568870+Rusox89@users.noreply.github.com>2019-10-22 13:23:21 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-10-22 14:24:10 +0200
commit213a39b4df1edb36b042e347a6c344b3fcd27bc0 (patch)
tree5c534a6bae9fcb7c79242b664bcf8ab7f8b48697 /docs/ref
parent336c9cb7f44b3b8a2d575c222e681d78dee6edd2 (diff)
[3.0.x] Refs #13724 -- Corrected QuerySet signature in docs.
Backport of 6c23b43655f3710cfb1ecc57236405d11a544247 from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index f9f84d9e5c..17238a56f6 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -126,7 +126,7 @@ described here.
Here's the formal declaration of a ``QuerySet``:
-.. class:: QuerySet(model=None, query=None, using=None)
+.. class:: QuerySet(model=None, query=None, using=None, hints=None)
Usually when you'll interact with a ``QuerySet`` you'll use it by
:ref:`chaining filters <chaining-filters>`. To make this work, most