diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-02-22 10:47:07 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-02-22 10:47:07 -0500 |
commit | f1eb2921c762fef292a07e043b73881aaae476fa (patch) | |
tree | 14973389ed7475084b89b05b15b9baa999fe673d /lib/sqlalchemy/sql/selectable.py | |
parent | bebd757b06f10f29f9e3555dc0a3ba6fe3ec93d5 (diff) | |
parent | f136cc893a2cd765c019654157af42aeb5135a1d (diff) | |
download | sqlalchemy-f1eb2921c762fef292a07e043b73881aaae476fa.tar.gz |
Merge remote-tracking branch 'origin/pr/5141'
Change-Id: If7e15115de22b0aa562a93f09d2287966914d96c
Diffstat (limited to 'lib/sqlalchemy/sql/selectable.py')
-rw-r--r-- | lib/sqlalchemy/sql/selectable.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index 2cb5f8390..5f22457fa 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -80,7 +80,7 @@ def subquery(alias, *args, **kwargs): class ReturnsRows(roles.ReturnsRowsRole, ClauseElement): - """The basemost class for Core contructs that have some concept of + """The basemost class for Core constructs that have some concept of columns that can represent rows. While the SELECT statement and TABLE are the primary things we think @@ -2184,7 +2184,7 @@ class SelectBase( "and will be removed in a future release; this method implicitly " "creates a subquery that should be explicit. " "Please call :meth:`.SelectBase.subquery` first in order to create " - "a subquery, which then can be seleted.", + "a subquery, which then can be selected.", ) def join(self, *arg, **kw): return self._implicit_subquery.join(*arg, **kw) @@ -2195,7 +2195,7 @@ class SelectBase( "and will be removed in a future release; this method implicitly " "creates a subquery that should be explicit. " "Please call :meth:`.SelectBase.subquery` first in order to create " - "a subquery, which then can be seleted.", + "a subquery, which then can be selected.", ) def outerjoin(self, *arg, **kw): return self._implicit_subquery.outerjoin(*arg, **kw) |