summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorClifford Gama <53076065+cliff688@users.noreply.github.com>2025-01-07 15:47:56 +0200
committerGitHub <noreply@github.com>2025-01-07 10:47:56 -0300
commit095f5db060b88f5ef248d6a656b9059a54d4f277 (patch)
treed4f86d0dd570f4e4b08f801f1383e618ed526a87 /docs/intro
parent470e5545e56e8510f9b9d39a96d7094fedd9c45a (diff)
Fixed typo in tutorial 5.
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/tutorial05.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt
index 28a634b8c3..921670aa5e 100644
--- a/docs/intro/tutorial05.txt
+++ b/docs/intro/tutorial05.txt
@@ -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
--------------------