summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial05.txt
diff options
context:
space:
mode:
authorClifford Gama <53076065+cliff688@users.noreply.github.com>2025-01-07 15:47:56 +0200
committerNatalia <124304+nessita@users.noreply.github.com>2025-01-07 11:03:01 -0300
commit638547bc0b3487d979b1c3968ea13227161214cf (patch)
tree1215a6d62e7e70a420b2bea3ed4b16a586fe0a39 /docs/intro/tutorial05.txt
parent2ee6ca6d35f667c54cba7efacccee3b9f178a6e7 (diff)
[5.1.x] Fixed typo in tutorial 5.
Backport of 095f5db060b88f5ef248d6a656b9059a54d4f277 from main.
Diffstat (limited to 'docs/intro/tutorial05.txt')
-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
--------------------