From 2af1b107fce34b15898e6f534097ad34cfd7d503 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 27 Apr 2021 22:22:38 +0200 Subject: [PATCH] =?utf8?q?=E2=9C=8F=EF=B8=8F=20Fix=20small=20typos=20in=20?= =?utf8?q?"Working=20with=20Database=20Metadata"=20(#6369)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- doc/build/tutorial/metadata.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/build/tutorial/metadata.rst b/doc/build/tutorial/metadata.rst index 576dd544c1..8dc63bdeab 100644 --- a/doc/build/tutorial/metadata.rst +++ b/doc/build/tutorial/metadata.rst @@ -60,7 +60,7 @@ Having a single :class:`_schema.MetaData` object for an entire application is the most common case, represented as a module-level variable in a single place in an application, often in a "models" or "dbschema" type of package. There can be multiple :class:`_schema.MetaData` collections as well, however -it's typically most helpful if a series :class:`_schema.Table` objects that are +it's typically most helpful if a series of :class:`_schema.Table` objects that are related to each other belong to a single :class:`_schema.MetaData` collection. @@ -251,7 +251,7 @@ reverse order as it would emit CREATE in order to drop schema elements. Defining Table Metadata with the ORM ------------------------------------ -This ORM-only section will provide an example of the declaring the +This ORM-only section will provide an example declaring the same database structure illustrated in the previous section, using a more ORM-centric configuration paradigm. When using the ORM, the process by which we declare :class:`_schema.Table` metadata @@ -514,7 +514,7 @@ using the :paramref:`_schema.Table.autoload_with` parameter: At the end of the process, the ``some_table`` object now contains the information about the :class:`_schema.Column` objects present in the table, and the object is usable in exactly the same way as a :class:`_schema.Table` that -we declared explicitly.:: +we declared explicitly:: >>> some_table Table('some_table', MetaData(), -- 2.47.3