summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-11-06 13:12:14 -0500
committerGitHub <noreply@github.com>2017-11-06 13:12:14 -0500
commit5587485d49af8b32ab660854f751a234baa6610b (patch)
tree0bd07ba261076b928575b37fc827fa09f6ef7a15 /docs
parent278d66b94bb443e1c1581e014fee2593a33f338c (diff)
Fixed #28765 -- Clarified docs about what types the __in lookup accepts.
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 bd20fbdcea..017cdcae29 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2508,7 +2508,7 @@ SQL equivalent::
``in``
~~~~~~
-In a given list.
+In a given iterable; often a list, tuple, or queryset.
Example::