1
0
mirror of https://github.com/django/django.git synced 2025-04-15 12:54:38 +00:00

[1.11.x] Fixed #28025 -- Fixed typo in docs/ref/models/querysets.txt.

Backport of 9f0c82971dff1e40bad63879b5f6fee42dd64953 from master
This commit is contained in:
Sudhanshu Mishra 2017-04-05 16:53:40 +05:30 committed by Tim Graham
parent 5da14b257e
commit 44bf3c6812

View File

@ -838,7 +838,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.