From: Mike Bayer Date: Sat, 26 Nov 2011 18:17:21 +0000 (-0500) Subject: fix typo [ticket:2334] X-Git-Tag: rel_0_7_4~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3e98d31d99c6f6d6f7df20607e43602b356094ab;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo [ticket:2334] --- diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst index f999115620..c2dc927574 100644 --- a/doc/build/core/tutorial.rst +++ b/doc/build/core/tutorial.rst @@ -1432,11 +1432,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'},