Made some negligible docstring fixes while I was poking around in the depths of query.py

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16025 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2011-04-11 21:48:47 +00:00
parent d546179c71
commit 3b6c5e5eb2
1 changed files with 2 additions and 2 deletions

View File

@ -1406,7 +1406,7 @@ class Query(object):
the final join is against the same column as we are comparing against, the final join is against the same column as we are comparing against,
and is an inner join, we can go back one step in a join chain and and is an inner join, we can go back one step in a join chain and
compare against the LHS of the join instead (and then repeat the compare against the LHS of the join instead (and then repeat the
optimization). The result, potentially, involves less table joins. optimization). The result, potentially, involves fewer table joins.
The 'target' parameter is the final field being joined to, 'join_list' The 'target' parameter is the final field being joined to, 'join_list'
is the full list of join aliases. is the full list of join aliases.