summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/operators.py
diff options
context:
space:
mode:
authorKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-08-09 10:02:57 +0000
committerKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-08-09 10:02:57 +0000
commit71f14f6de8ee1865fd68d7989f751eed95dde719 (patch)
treeb59ef7821edddcdba1c3782118e7237b6b5e067e /lib/sqlalchemy/sql/operators.py
parentc0685e5f419e203acd5e46f25c90e851e30e6f03 (diff)
downloadsqlalchemy-71f14f6de8ee1865fd68d7989f751eed95dde719.tar.gz
Fix typos
Diffstat (limited to 'lib/sqlalchemy/sql/operators.py')
-rw-r--r--lib/sqlalchemy/sql/operators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py
index 2d369cdf8..bb773e281 100644
--- a/lib/sqlalchemy/sql/operators.py
+++ b/lib/sqlalchemy/sql/operators.py
@@ -536,7 +536,7 @@ class ColumnOperators(Operators):
In this calling form, the expression renders an "empty set"
expression. These expressions are tailored to individual backends
and are generaly trying to get an empty SELECT statement as a
- subuqery. Such as on SQLite, the expression is::
+ subquery. Such as on SQLite, the expression is::
WHERE col IN (SELECT 1 FROM (SELECT 1) WHERE 1!=1)