]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix documentation typos 5141/head
authorFederico Caselli <cfederico87@gmail.com>
Sat, 8 Feb 2020 17:48:06 +0000 (18:48 +0100)
committerFederico Caselli <cfederico87@gmail.com>
Sat, 8 Feb 2020 17:48:06 +0000 (18:48 +0100)
Change-Id: I4376910ae1cf6bf27226f049d4cf2d0e6ba2a83b

lib/sqlalchemy/sql/selectable.py
lib/sqlalchemy/sql/visitors.py

index db743f408dabbd371498521c4e53b14242006d56..98afe78ac502c9eb64c83fcedb74426213e2a2af 100644 (file)
@@ -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)
index cd1c7c6966a2608126b922d02da5daec4f53b3d9..c946bb4ab24ee9c985b78b4488ed6ae2836fca58 100644 (file)
@@ -180,7 +180,7 @@ class InternalTraversal(util.with_metaclass(_InternalTraversalType, object)):
         ]
 
     Above, the :class:`.Case` class indicates its internal state as the
-    attribtues named ``value``, ``whens``, and ``else\_``.    They each
+    attributes named ``value``, ``whens``, and ``else\_``.    They each
     link to an :class:`.InternalTraversal` method which indicates the type
     of datastructure referred towards.