diff options
author | Ernest Walzel <ernest.walzel@ed.ac.uk> | 2015-03-26 18:28:07 +0000 |
---|---|---|
committer | Ernest Walzel <ernest.walzel@ed.ac.uk> | 2015-03-26 18:28:11 +0000 |
commit | a518b31f3b131ae8304026109cd826e38c2afc26 (patch) | |
tree | 2a4e94e4c2ab3391dbc00ee93980f452e3b606b9 | |
parent | 422fca43f8af1bfba0c2a2d24aa2eca7fc3bd558 (diff) | |
download | sqlalchemy-pr/165.tar.gz |
Fix typospr/165
agaisnt -> against
'a Alias' -> 'an Alias'
-rw-r--r-- | doc/build/orm/extensions/declarative/mixins.rst | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/sql/selectable.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/orm/extensions/declarative/mixins.rst b/doc/build/orm/extensions/declarative/mixins.rst index d64477649..1b3364c2e 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 b5a7489bf..f848ef6db 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) |