summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-03-17 17:32:16 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-03-17 17:32:16 -0400
commit138293c246fbf8c6693044a89fe788d0d0446113 (patch)
tree3ea04c8f118965a1df2f4b80c493f435d20243c0
parentd6a6cbaf99138d26fed249c9ef4be5fec89b5ea3 (diff)
downloadsqlalchemy-138293c246fbf8c6693044a89fe788d0d0446113.tar.gz
- fix typo, fixes #3325
-rw-r--r--doc/build/core/tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst
index e96217f79..b4f185ac2 100644
--- a/doc/build/core/tutorial.rst
+++ b/doc/build/core/tutorial.rst
@@ -1691,7 +1691,7 @@ Inserts, Updates and Deletes
We've seen :meth:`~.TableClause.insert` demonstrated
earlier in this tutorial. Where :meth:`~.TableClause.insert`
-prodces INSERT, the :meth:`~.TableClause.update`
+produces INSERT, the :meth:`~.TableClause.update`
method produces UPDATE. Both of these constructs feature
a method called :meth:`~.ValuesBase.values` which specifies
the VALUES or SET clause of the statement.