]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo in docs (errors.rst) 4862/head
authorMikhail Burshteyn <mdburshteyn@gmail.com>
Wed, 18 Sep 2019 11:00:26 +0000 (14:00 +0300)
committerGitHub <noreply@github.com>
Wed, 18 Sep 2019 11:00:26 +0000 (14:00 +0300)
doc/build/errors.rst

index 38f30d05583604076f0ebdb5fa8f5f45c9a95c12..547464636f407630e2729cb37cebb8a260c64c6f 100644 (file)
@@ -509,7 +509,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::