]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix Typo In Tutorial (#9399)
authoreasy_markie_tee <easymarkietee@protonmail.com>
Wed, 1 Mar 2023 21:51:43 +0000 (16:51 -0500)
committerGitHub <noreply@github.com>
Wed, 1 Mar 2023 21:51:43 +0000 (22:51 +0100)
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 <cassette.head@gmail.com>
doc/build/tutorial/metadata.rst

index 730190be31e2faf42c25188be83789b4d10d72b5..a7b9ff9b036183d5f767d6f4e1c470ca126c669e 100644 (file)
@@ -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`.