1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Fixed typo in docs/intro/tutorial05.txt

This commit is contained in:
Clifford Gama 2024-10-26 17:37:15 +02:00
parent de2bb73904
commit e122e1146d
No known key found for this signature in database
GPG Key ID: BF895AA45E520E21

View File

@ -456,7 +456,7 @@ and then we must amend the ``get_queryset`` method like so:
``Question.objects.filter(pub_date__lte=timezone.now())`` returns a queryset
containing ``Question``\s whose ``pub_date`` is less than or equal to - that
is, earlier than or equal to - ``timezone.now``.
is, earlier than or equal to - ``timezone.now()``.
Testing our new view
--------------------