[1.5.X] Fixed typo in docs/ref/models/querysets.txt

Backport of 76859e6eab from master
This commit is contained in:
Anton Danilchenko 2012-11-18 18:46:39 +02:00 committed by Tim Graham
parent 27ecabf73f
commit 5b6db35a74
1 changed files with 1 additions and 1 deletions

View File

@ -678,7 +678,7 @@ have ``null=True``.
Usually, using ``select_related()`` can vastly improve performance because your
app can avoid many database calls. However, there are times you are only
interested in specific related models, or have deeply nested sets of
relationships, and in these cases ``select_related()`` can can be optimized by
relationships, and in these cases ``select_related()`` can be optimized by
explicitly passing the related field names you are interested in. Only
the specified relations will be followed.