diff options
Diffstat (limited to 'lib/sqlalchemy/sql/elements.py')
-rw-r--r-- | lib/sqlalchemy/sql/elements.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/elements.py b/lib/sqlalchemy/sql/elements.py index 5ea3526ea..a9f21cd5f 100644 --- a/lib/sqlalchemy/sql/elements.py +++ b/lib/sqlalchemy/sql/elements.py @@ -2242,7 +2242,7 @@ class BooleanClauseList(ClauseList, ColumnElement): lcc = 1 else: against = operator - # techincally this would be len(convert_clauses) + 1 + # technically this would be len(convert_clauses) + 1 # however this only needs to indicate "greater than one" lcc = 2 convert_clauses.append(clause) @@ -2550,7 +2550,7 @@ class Tuple(ClauseList, ColumnElement): ) def self_group(self, against=None): - # Tuple is parenthsized by definition. + # Tuple is parenthesized by definition. return self |