From: Mike Bayer Date: Fri, 11 Sep 2020 15:07:33 +0000 (-0400) Subject: fix typos X-Git-Tag: rel_1_4_0b1~114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53ad41cbd9eca06c9d6f7440c867b83a9463dc3f;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typos Change-Id: I7649576bd1e100fd6f8968f0256b074263943a44 --- diff --git a/doc/build/orm/declarative_tables.rst b/doc/build/orm/declarative_tables.rst index bbad7a321b..2aff8bbc2d 100644 --- a/doc/build/orm/declarative_tables.rst +++ b/doc/build/orm/declarative_tables.rst @@ -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(