]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix typo [ticket:2334]
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 26 Nov 2011 18:17:21 +0000 (13:17 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 26 Nov 2011 18:17:21 +0000 (13:17 -0500)
doc/build/core/tutorial.rst

index f9991156202bd101aaf2f6462fbc7e7874ebe26a..c2dc92757425a723714d6cae380e2b45fdf42e38 100644 (file)
@@ -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'},