From 1d45a67964ca6776e755c106a16979f0f9bce2c9 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 26 Nov 2011 12:41:08 -0500 Subject: [PATCH] fix typo [ticket:2334] --- doc/build/core/tutorial.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'}, -- 2.47.3