diff options
Diffstat (limited to 'docs/topics/db/optimization.txt')
| -rw-r--r-- | docs/topics/db/optimization.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/optimization.txt b/docs/topics/db/optimization.txt index 166d50710f..ca04c8fd55 100644 --- a/docs/topics/db/optimization.txt +++ b/docs/topics/db/optimization.txt @@ -289,7 +289,7 @@ It is optimal because: ``display_group_members`` is ``False``. #. Storing ``group.members.all()`` in the ``members`` variable allows its - result cache to be re-used. + result cache to be reused. #. The line ``if members:`` causes ``QuerySet.__bool__()`` to be called, which causes the ``group.members.all()`` query to be run on the database. If there |
