From: Mike Bayer Date: Tue, 17 Mar 2015 21:32:16 +0000 (-0400) Subject: - fix typo, fixes #3325 X-Git-Tag: rel_1_0_0b2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=138293c246fbf8c6693044a89fe788d0d0446113;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - fix typo, fixes #3325 --- diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst index e96217f794..b4f185ac28 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.