From: easy_markie_tee Date: Wed, 1 Mar 2023 21:51:43 +0000 (-0500) Subject: Fix Typo In Tutorial (#9399) X-Git-Tag: rel_2_0_5~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d9e47fe9398b6bcda917f63441d2b5ad4b345c4;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix Typo In Tutorial (#9399) Missing a word on the page `Working with Database Metadata`. First paragraph under section 'Setting up MetaData with Table objects'. "...the database which we query from is know [as] a table." Co-authored-by: markie tee --- diff --git a/doc/build/tutorial/metadata.rst b/doc/build/tutorial/metadata.rst index 730190be31..a7b9ff9b03 100644 --- a/doc/build/tutorial/metadata.rst +++ b/doc/build/tutorial/metadata.rst @@ -40,7 +40,7 @@ Setting up MetaData with Table objects --------------------------------------- When we work with a relational database, the basic data-holding structure -in the database which we query from is known a **table**. +in the database which we query from is known as a **table**. In SQLAlchemy, the database "table" is ultimately represented by a Python object similarly named :class:`_schema.Table`.