summaryrefslogtreecommitdiff
path: root/docs
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:23:21 +0200
commit6c23b43655f3710cfb1ecc57236405d11a544247 (patch)
treedfbedf42b6ebf3433d35a49a7e795a5fb32b7e6e /docs
parentaf8dbbe0d5099ce09fc77abdf8a3fb8a4f4015d9 (diff)
Refs #13724 -- Corrected QuerySet signature in docs.
Diffstat (limited to 'docs')
-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 ef489b8467..d4a922f3dc 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