mirror of
https://github.com/django/django.git
synced 2025-04-01 20:16:43 +00:00
[1.11.x] Fixed #28648 -- Corrected typo in docs/topics/db/queries.txt.
Backport of 293df73fb67a56c0417af8c39f808f64bc03cbeb from master
This commit is contained in:
parent
42847327d1
commit
e8a82e82c1
@ -228,7 +228,7 @@ refinements together. For example::
|
||||
... ).exclude(
|
||||
... pub_date__gte=datetime.date.today()
|
||||
... ).filter(
|
||||
... pub_date__gte=datetime(2005, 1, 30)
|
||||
... pub_date__gte=datetime.date(2005, 1, 30)
|
||||
... )
|
||||
|
||||
This takes the initial :class:`~django.db.models.query.QuerySet` of all entries
|
||||
|
Loading…
x
Reference in New Issue
Block a user