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:24:46 +0200
commit43bc59ceb624d6a1ac58aa7a282254e60c9c4025 (patch)
tree0f91c0b2db8f0fd75d031240f4fa893dfc0fd482 /docs
parentaa28213eb51ba26b349c2e51f2defcc7cc87780e (diff)
[2.2.x] Refs #13724 -- Corrected QuerySet signature in docs.
Backport of 6c23b43655f3710cfb1ecc57236405d11a544247 from master
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 c76df17d7f..7880d0eed7 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