]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo in docs (errors.rst)
authorMikhail Burshteyn <mdburshteyn@gmail.com>
Wed, 18 Sep 2019 11:00:26 +0000 (14:00 +0300)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 18 Sep 2019 12:23:28 +0000 (08:23 -0400)
(cherry picked from commit af94e639ae7b0e2ee3d8caf92b0f7e128f4199ab)

doc/build/errors.rst

index e7f95fa2475c08895a3d1c01e7982050b382ecae..5e96cdd9bdf0d32e6cdd2931a8f4f8c80049cfa2 100644 (file)
@@ -468,7 +468,7 @@ to pass it to the :meth:`.Connection.execute` method of a :class:`.Connection`::
 
 When using the ORM, a similar facility is available via the :class:`.Session`::
 
- result = session.exxecute(stmt)
+ result = session.execute(stmt)
 
 .. seealso::