summaryrefslogtreecommitdiff
path: root/doc/build/tutorial
diff options
context:
space:
mode:
authorSebastián Ramírez <tiangolo@gmail.com>2021-04-28 20:39:29 +0200
committerGitHub <noreply@github.com>2021-04-28 20:39:29 +0200
commite39e5ff88cb99e4e91b1645b330da84601713433 (patch)
treef19b7b24284f6a80976153469adc14608ef50441 /doc/build/tutorial
parent7fdaac7b2910b5612420378519b9f60d4649daff (diff)
downloadsqlalchemy-e39e5ff88cb99e4e91b1645b330da84601713433.tar.gz
✏️ Fix small typo in "Updating and Deleting Rows with Core" (#6382)
Diffstat (limited to 'doc/build/tutorial')
-rw-r--r--doc/build/tutorial/data_update.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/tutorial/data_update.rst b/doc/build/tutorial/data_update.rst
index c564e3e76..8813dda98 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