]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo
authorJeff Widman <jeff@jeffwidman.com>
Tue, 26 Jul 2016 02:07:19 +0000 (19:07 -0700)
committerGitHub <noreply@github.com>
Tue, 26 Jul 2016 02:07:19 +0000 (19:07 -0700)
doc/build/faq/sessions.rst

index ee280ae98b7e2316b622ac3fde5b1d69b9c4ce94..f7247aa210cae8e6aa875b24475156517c646545 100644 (file)
@@ -321,7 +321,7 @@ how do I use ON DELETE CASCADE with SA's ORM?
 SQLAlchemy will always issue UPDATE or DELETE statements for dependent
 rows which are currently loaded in the :class:`.Session`.  For rows which
 are not loaded, it will by default issue SELECT statements to load
-those rows and udpate/delete those as well; in other words it assumes
+those rows and update/delete those as well; in other words it assumes
 there is no ON DELETE CASCADE configured.
 To configure SQLAlchemy to cooperate with ON DELETE CASCADE, see
 :ref:`passive_deletes`.