1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #28776 -- Fixed a/an/and typos in docs and comments.

This commit is contained in:
Дилян Палаузов
2017-11-06 22:11:39 -05:00
committed by Tim Graham
parent 5587485d49
commit 6c0042430e
24 changed files with 29 additions and 29 deletions

View File

@@ -63,7 +63,7 @@ class RelatedIn(In):
if isinstance(self.lhs, MultiColSource):
# For multicolumn lookups we need to build a multicolumn where clause.
# This clause is either a SubqueryConstraint (for values that need to be compiled to
# SQL) or a OR-combined list of (col1 = val1 AND col2 = val2 AND ...) clauses.
# SQL) or an OR-combined list of (col1 = val1 AND col2 = val2 AND ...) clauses.
from django.db.models.sql.where import WhereNode, SubqueryConstraint, AND, OR
root_constraint = WhereNode(connector=OR)