diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index ab40b1e0e6..e98f0202ce 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -837,7 +837,7 @@ queries. Uses SQL's ``INTERSECT`` operator to return the shared elements of two or more ``QuerySet``\s. For example: - >>> qs1.itersect(qs2, qs3) + >>> qs1.intersection(qs2, qs3) See :meth:`union` for some restrictions.