1
0
mirror of https://github.com/django/django.git synced 2025-02-05 15:06:48 +00:00

[5.1.x] Fixed typo in docs/topics/performance.txt.

Backport of ca113adbae1cc2129256f51ac71e8aed2a381576 from main.
This commit is contained in:
Caitlin Hogan 2024-11-16 10:40:40 -08:00 committed by Sarah Boyce
parent a2bc2925b1
commit 1be9c5fb56

View File

@ -137,7 +137,7 @@ one that it is comfortable to code for.
Firstly, in a real-life case you need to consider what is happening before
and after your count to work out what's an optimal way of doing it *in that
particular context*. The database optimization documents describes :ref:`a
particular context*. The database optimization document describes :ref:`a
case where counting in the template would be better
<overuse_of_count_and_exists>`.