]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
✏️ Fix small typo in "Updating and Deleting Rows with Core" (#6382)
authorSebastián Ramírez <tiangolo@gmail.com>
Wed, 28 Apr 2021 18:39:29 +0000 (20:39 +0200)
committerGitHub <noreply@github.com>
Wed, 28 Apr 2021 18:39:29 +0000 (20:39 +0200)
doc/build/tutorial/data_update.rst

index c564e3e76ac7292ac743a2e759382202bc893f63..8813dda9889a9fc40fa6c5a151fba21de07acdb9 100644 (file)
@@ -208,7 +208,7 @@ The delete() SQL Expression Construct
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 The :func:`_sql.delete` function generates a new instance of
-:class:`_sql.Delete` which represents an DELETE statement in SQL, that will
+:class:`_sql.Delete` which represents a DELETE statement in SQL, that will
 delete rows from a table.
 
 The :func:`_sql.delete` statement from an API perspective is very similar to