Ver Fonte

Fixed #28648 -- Corrected typo in docs/topics/db/queries.txt.

Stefan Schneider há 7 anos atrás
pai
commit
293df73fb6
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      docs/topics/db/queries.txt

+ 1 - 1
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