From 1dcc603efff8229838f27019668d864a0bcbfa59 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 28 May 2014 17:39:14 -0700 Subject: Fixed several typos in Django --- django/db/models/sql/query.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'django/db/models/sql/query.py') diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py index cb94989a05..6421f38796 100644 --- a/django/db/models/sql/query.py +++ b/django/db/models/sql/query.py @@ -1491,7 +1491,7 @@ class Query(object): query.remove_inherited_models() # Add extra check to make sure the selected field will not be null - # since we are adding a IN clause. This prevents the + # since we are adding an IN clause. This prevents the # database from tripping over IN (...,NULL,...) selects and returning # nothing alias, col = query.select[0].col @@ -2091,7 +2091,7 @@ class JoinPromoter(object): # join. # Note that in this example we could just as well have the __gte # clause and the OR clause swapped. Or we could replace the __gte - # clause with a OR clause containing rel_a__col=1|rel_a__col=2, + # clause with an OR clause containing rel_a__col=1|rel_a__col=2, # and again we could safely demote to INNER. query.promote_joins(to_promote) query.demote_joins(to_demote) -- cgit v1.3