summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMatt Stevens <matt@dirtymonkey.co.uk>2012-09-03 15:20:05 +0100
committerMatt Stevens <matt@dirtymonkey.co.uk>2012-09-03 15:20:05 +0100
commit813241f65562bc0e7f20264238424d82bee2febc (patch)
tree58867ae26e1498f67ec9eb6bc64f556f8407d75e /docs
parent03ad7d3c2085fa252e7bf6a725fec1ed3d1e6a7c (diff)
Clarifies day and month in example queryset
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/queries.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index 60437c1120..1203dab092 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -235,14 +235,14 @@ refinements together. For example::
... ).exclude(
... pub_date__gte=datetime.now()
... ).filter(
- ... pub_date__gte=datetime(2005, 1, 1)
+ ... pub_date__gte=datetime(2005, 1, 2)
... )
This takes the initial :class:`~django.db.models.query.QuerySet` of all entries
in the database, adds a filter, then an exclusion, then another filter. The
final result is a :class:`~django.db.models.query.QuerySet` containing all
entries with a headline that starts with "What", that were published between
-January 1, 2005, and the current day.
+January 2, 2005, and the current day.
.. _filtered-querysets-are-unique: