summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Burshteyn <mdburshteyn@gmail.com>2019-09-18 14:00:26 +0300
committerMike Bayer <mike_mp@zzzcomputing.com>2019-09-18 08:23:33 -0400
commitdac8d95f7b98a1e23ee6a93cba863de6f585557a (patch)
treec8b1ed959d9efd4d4b9515f292acb978018c70a9
parentd01c391a3ea928fa68402ca11d73e2a09f6f1938 (diff)
downloadsqlalchemy-dac8d95f7b98a1e23ee6a93cba863de6f585557a.tar.gz
Fix typo in docs (errors.rst)
(cherry picked from commit af94e639ae7b0e2ee3d8caf92b0f7e128f4199ab)
-rw-r--r--doc/build/errors.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/errors.rst b/doc/build/errors.rst
index 3280c3fcc..802ea9660 100644
--- a/doc/build/errors.rst
+++ b/doc/build/errors.rst
@@ -424,7 +424,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::