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

index bcdd0403c6da8d77693518acf5102590e3aa4e8f..27cec7f94da6c47d80b777c1bc584fe711ead8e2 100644 (file)
@@ -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'},