summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-11-06 13:12:14 -0500
committerTim Graham <timograham@gmail.com>2017-11-06 13:12:56 -0500
commitbcaef2c91d234fe742973eb7df8a47f2048d3e63 (patch)
tree9accdf67a836d8b496fd2abc6e72ce36b550396b
parenta44fb4aa02ed6d87f22d96a48907dbe833e1d392 (diff)
[2.0.x] Fixed #28765 -- Clarified docs about what types the __in lookup accepts.
Backport of 5587485d49af8b32ab660854f751a234baa6610b from master
-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 0b6e53ed1b..d6845cffd9 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2546,7 +2546,7 @@ SQL equivalent::
``in``
~~~~~~
-In a given list.
+In a given iterable; often a list, tuple, or queryset.
Example::