]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typos
authorErnest Walzel <ernest.walzel@ed.ac.uk>
Thu, 26 Mar 2015 18:28:07 +0000 (18:28 +0000)
committerErnest Walzel <ernest.walzel@ed.ac.uk>
Thu, 26 Mar 2015 18:28:11 +0000 (18:28 +0000)
agaisnt -> against
'a Alias' -> 'an Alias'

doc/build/orm/extensions/declarative/mixins.rst
lib/sqlalchemy/sql/selectable.py

index d64477649e359fe181beca3662fe4251caad264e..1b3364c2e04d42a227a918e4d169b7c5859be9d4 100644 (file)
@@ -410,7 +410,7 @@ name based on class name::
 Alternatively, we can modify our ``__tablename__`` function to return
 ``None`` for subclasses, using :func:`.has_inherited_table`.  This has
 the effect of those subclasses being mapped with single table inheritance
-agaisnt the parent::
+against the parent::
 
     from sqlalchemy.ext.declarative import declared_attr
     from sqlalchemy.ext.declarative import has_inherited_table
index b5a7489bf9aa9c3a55bead39d52ebe51e91c41cc..f848ef6db1d1a8ee4f0f424e96aaa53319e7dd10 100644 (file)
@@ -948,7 +948,7 @@ class Join(FromClause):
         """return an alias of this :class:`.Join`.
 
         The default behavior here is to first produce a SELECT
-        construct from this :class:`.Join`, then to produce a
+        construct from this :class:`.Join`, then to produce an
         :class:`.Alias` from that.  So given a join of the form::
 
             j = table_a.join(table_b, table_a.c.id == table_b.c.a_id)