diff options
-rw-r--r-- | doc/build/core/tutorial.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst index f99911562..c2dc92757 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'}, |