diff options
author | Federico Caselli <cfederico87@gmail.com> | 2020-02-08 18:48:06 +0100 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2020-02-08 18:48:06 +0100 |
commit | f136cc893a2cd765c019654157af42aeb5135a1d (patch) | |
tree | eff1a7731d03af664fb66bb3f89263962effe7f0 /lib/sqlalchemy/sql/selectable.py | |
parent | 47aa62abde6eba67802f2f7126cc79fbd95b5d1a (diff) | |
download | sqlalchemy-f136cc893a2cd765c019654157af42aeb5135a1d.tar.gz |
fix documentation typos
Change-Id: I4376910ae1cf6bf27226f049d4cf2d0e6ba2a83b
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 db743f408..98afe78ac 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 @@ -2177,7 +2177,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) @@ -2188,7 +2188,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) |