From: Mike Bayer Date: Sat, 26 Nov 2011 17:41:08 +0000 (-0500) Subject: fix typo [ticket:2334] X-Git-Tag: rel_0_6_9~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1d45a67964ca6776e755c106a16979f0f9bce2c9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo [ticket:2334] --- diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst index bcdd0403c6..27cec7f94d 100644 --- a/doc/build/core/tutorial.rst +++ b/doc/build/core/tutorial.rst @@ -1412,11 +1412,11 @@ portion of the INSERT:: the names of the table's columns are reserved for the "automatic" generation of bind names:: - users.insert().values(id=bindparam('_id'), name=bindaparam('_name')) + users.insert().values(id=bindparam('_id'), name=bindparam('_name')) # insert many rows at once: conn.execute( - users.insert().values(id=bindparam('_id'), name=bindaparam('_name')), + users.insert().values(id=bindparam('_id'), name=bindparam('_name')), [ {'_id':1, '_name':'name1'}, {'_id':2, '_name':'name2'},