Skip to content

Commit 4274fbc

Browse files
authored
Fix typo (#567)
1 parent c6b3f05 commit 4274fbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/example_executemany.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async def test_example_executemany(loop):
2222
await cur.execute("INSERT INTO music_style VALUES(3,'power metal');")
2323
await conn.commit()
2424

25-
# insert 3 row by one long query using *executemane* method
25+
# insert 3 row by one long query using *executemany* method
2626
data = [(4, 'gothic metal'), (5, 'doom metal'), (6, 'post metal')]
2727
await cur.executemany(
2828
"INSERT INTO music_style (id, name)"

0 commit comments

Comments
 (0)