From 9d9e47fe9398b6bcda917f63441d2b5ad4b345c4 Mon Sep 17 00:00:00 2001 From: easy_markie_tee Date: Wed, 1 Mar 2023 16:51:43 -0500 Subject: [PATCH] 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 --- doc/build/tutorial/metadata.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`. -- 2.47.3