From: Sebastián Ramírez Date: Wed, 28 Apr 2021 18:39:29 +0000 (+0200) Subject: ✏️ Fix small typo in "Updating and Deleting Rows with Core" (#6382) X-Git-Tag: rel_1_4_12~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e39e5ff88cb99e4e91b1645b330da84601713433;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git ✏️ Fix small typo in "Updating and Deleting Rows with Core" (#6382) --- diff --git a/doc/build/tutorial/data_update.rst b/doc/build/tutorial/data_update.rst index c564e3e76a..8813dda988 100644 --- a/doc/build/tutorial/data_update.rst +++ b/doc/build/tutorial/data_update.rst @@ -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