Fixed #28648 -- Corrected typo in docs/topics/db/queries.txt.
This commit is contained in:
parent
8d40eb0e89
commit
293df73fb6
|
@ -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…
Reference in New Issue