From: Sebastián Ramírez Date: Mon, 26 Apr 2021 19:49:02 +0000 (+0200) Subject: ✏️ Fix small typo in Working with Transactions and the DBAPI (#6363) X-Git-Tag: rel_1_4_12~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b51850fd8887ee2a5777214e21ad136e2c1865f2;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git ✏️ Fix small typo in Working with Transactions and the DBAPI (#6363) --- diff --git a/doc/build/tutorial/dbapi_transactions.rst b/doc/build/tutorial/dbapi_transactions.rst index d9b20c7605..16768da2b9 100644 --- a/doc/build/tutorial/dbapi_transactions.rst +++ b/doc/build/tutorial/dbapi_transactions.rst @@ -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.