summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2021-12-09 20:24:38 +0100
committerFederico Caselli <cfederico87@gmail.com>2021-12-09 20:24:38 +0100
commit1606673183d109d81c81f132b2c880800bfa2dc3 (patch)
tree36050de34a8200320b6f4fe4fa673130bf84a1bd
parent546391e5a80f647e7ad78ef93f832f10278a8867 (diff)
parent9fd1bb4e8bf8a21f8c20b4390a9e7d579556ffc0 (diff)
downloadsqlalchemy-1606673183d109d81c81f132b2c880800bfa2dc3.tar.gz
Merge branch 'typos-fixes' into main_gerrit
Change-Id: I32a4c97add07a3fe7d2d5cc4f1cd263b2042e123
-rw-r--r--doc/build/changelog/unreleased_14/7386.rst2
-rw-r--r--lib/sqlalchemy/sql/selectable.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/changelog/unreleased_14/7386.rst b/doc/build/changelog/unreleased_14/7386.rst
index e344453c8..2a9022868 100644
--- a/doc/build/changelog/unreleased_14/7386.rst
+++ b/doc/build/changelog/unreleased_14/7386.rst
@@ -3,5 +3,5 @@
:tickets: 7386
Support multiple clause elements in the :meth:`_sql.Exists.where` method,
- unifying the api with the on presented by a normal :func:`_sql.select`
+ unifying the api with the one presented by a normal :func:`_sql.select`
construct.
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py
index 57fe18950..a96ed479d 100644
--- a/lib/sqlalchemy/sql/selectable.py
+++ b/lib/sqlalchemy/sql/selectable.py
@@ -6490,7 +6490,7 @@ class Exists(UnaryExpression):
See :func:`_sql.exists` for a description of usage.
- An ``EXISTS`` clase can also be constructed from a :func:`_sql.select`
+ An ``EXISTS`` clause can also be constructed from a :func:`_sql.select`
instance by calling :meth:`_sql.SelectBase.exists`.
"""