From 6c23b43655f3710cfb1ecc57236405d11a544247 Mon Sep 17 00:00:00 2001 From: Antonio Dudarev <8568870+Rusox89@users.noreply.github.com> Date: Tue, 22 Oct 2019 13:23:21 +0100 Subject: [PATCH] Refs #13724 -- Corrected QuerySet signature in docs. --- docs/ref/models/querysets.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 `. To make this work, most