Fixed #28025 -- Fixed typo in docs/ref/models/querysets.txt.

This commit is contained in:
Sudhanshu Mishra 2017-04-05 16:53:40 +05:30 committed by Tim Graham
parent 9301504a45
commit 9f0c82971d
1 changed files with 1 additions and 1 deletions

View File

@ -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.