]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
✏️ Fix small typo in Working with Transactions and the DBAPI (#6363)
authorSebastián Ramírez <tiangolo@gmail.com>
Mon, 26 Apr 2021 19:49:02 +0000 (21:49 +0200)
committerGitHub <noreply@github.com>
Mon, 26 Apr 2021 19:49:02 +0000 (21:49 +0200)
doc/build/tutorial/dbapi_transactions.rst

index d9b20c760553ee97bf0903cac4dae1c1c84655e3..16768da2b9f5a443f52d76463dc1b6c5d965b646 100644 (file)
@@ -521,7 +521,7 @@ the block with a "commit as you go" commit.
    when executing SQL against the database is next needed.
 
 The :class:`_orm.Session` obviously has a lot more tricks up its sleeve
-than that, however understanding that it has an :meth:`_orm.Session.execute`
+than that, however understanding that it has a :meth:`_orm.Session.execute`
 method that's used the same way as :meth:`_future.Connection.execute` will
 get us started with the examples that follow later.