]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix typos
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 11 Sep 2020 15:07:33 +0000 (11:07 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 11 Sep 2020 15:07:33 +0000 (11:07 -0400)
Change-Id: I7649576bd1e100fd6f8968f0256b074263943a44

doc/build/orm/declarative_tables.rst

index bbad7a321bb30e8b8cd8ea8b5ada8185f12e8eb8..2aff8bbc2d51120531a2be8f691e3d5c0445c589 100644 (file)
@@ -6,7 +6,7 @@ Table Configuration with Declarative
 =============================================
 
 As introduced at :ref:`orm_declarative_mapping`, the Declarative style
-includses the ability to generate a mapped :class:`_schema.Table` object
+includes the ability to generate a mapped :class:`_schema.Table` object
 at the same time, or to accommodate a :class:`_schema.Table` or other
 :class:`_sql.FromClause` object directly.
 
@@ -51,7 +51,7 @@ collection of this :class:`_schema.Table` object.   The :class:`_schema.Column`
 objects can omit their "name" field, which is usually the first positional
 argument to the :class:`_schema.Column` constructor; the declarative system
 will assign the key associated with each :class:`_schema.Column` as the name,
-to produce a :class:`_schema.Table` that is equvialent to::
+to produce a :class:`_schema.Table` that is equivalent to::
 
     # equivalent Table object produced
     user_table = Table(