From: Ernest Walzel Date: Thu, 26 Mar 2015 18:28:07 +0000 (+0000) Subject: Fix typos X-Git-Tag: rel_1_0_0b4~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a518b31f3b131ae8304026109cd826e38c2afc26;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typos agaisnt -> against 'a Alias' -> 'an Alias' --- diff --git a/doc/build/orm/extensions/declarative/mixins.rst b/doc/build/orm/extensions/declarative/mixins.rst index d64477649e..1b3364c2e0 100644 --- a/doc/build/orm/extensions/declarative/mixins.rst +++ b/doc/build/orm/extensions/declarative/mixins.rst @@ -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 diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index b5a7489bf9..f848ef6db1 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -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)