summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorStefan Schneider <stefan.schneider@intergga.ch>2017-09-29 16:31:49 +0200
committerTim Graham <timograham@gmail.com>2017-09-29 10:32:07 -0400
commit9f9a8a6c59e1c2d79c6cd07e530b3d7634a51b0c (patch)
tree2c8b6c7c2545a24550ce349d7f1dc8225abdad59 /docs
parentacd870a75a7a0d5788a1f937672039fb31551261 (diff)
[2.0.x] Fixed #28648 -- Corrected typo in docs/topics/db/queries.txt.
Backport of 293df73fb67a56c0417af8c39f808f64bc03cbeb from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/queries.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index 3651d2a53e..8ca7f9ef15 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -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