diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-03-18 14:57:41 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-03-18 14:57:41 -0400 |
commit | 9e06ab17b9d3083cd45540f714234d1d5826da32 (patch) | |
tree | 33cc1967577921be95b0b18b09130b224076eb75 /lib/sqlalchemy/sql/schema.py | |
parent | a40467152cbbc7e65d629dafbcc04ad1c85d3025 (diff) | |
parent | 3771af0af45c2a7ea79a055b953c32f23c53e256 (diff) | |
download | sqlalchemy-9e06ab17b9d3083cd45540f714234d1d5826da32.tar.gz |
Merge branch 'master' of https://bitbucket.org/jalessio/sqlalchemy
Diffstat (limited to 'lib/sqlalchemy/sql/schema.py')
-rw-r--r-- | lib/sqlalchemy/sql/schema.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/schema.py b/lib/sqlalchemy/sql/schema.py index 46721fe83..f8d3209ef 100644 --- a/lib/sqlalchemy/sql/schema.py +++ b/lib/sqlalchemy/sql/schema.py @@ -175,7 +175,7 @@ class Table(DialectKWArgs, SchemaItem, TableClause): is set in which case it defaults to True; :class:`.Column` objects for this table should be reflected from the database, possibly augmenting or replacing existing :class:`.Column` objects that were - expicitly specified. + explicitly specified. .. versionchanged:: 1.0.0 setting the :paramref:`.Table.autoload_with` parameter implies that :paramref:`.Table.autoload` will default @@ -3572,7 +3572,7 @@ class MetaData(SchemaItem): present, the :class:`.Constraint` object's existing name will be replaced with one that is composed from template string that uses this token. When this token is present, it is required that - the :class:`.Constraint` is given an expicit name ahead of time. + the :class:`.Constraint` is given an explicit name ahead of time. * user-defined: any additional token may be implemented by passing it along with a ``fn(constraint, table)`` callable to the |