summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2017-02-08 14:01:57 +0000
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2017-02-08 14:01:57 +0000
commit21fbe2bd2a8558d1c957902f6508662d6983736f (patch)
treea8c793f027c4cbd51bb3bcc86833b58872b6cc89
parentb4b8b5f16440d11f8551be23c3f7517e060cf274 (diff)
downloadpsycopg2-21fbe2bd2a8558d1c957902f6508662d6983736f.tar.gz
Fixed argument name in executemany docs
-rw-r--r--doc/src/cursor.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/cursor.rst b/doc/src/cursor.rst
index 219a56f..c03cea8 100644
--- a/doc/src/cursor.rst
+++ b/doc/src/cursor.rst
@@ -187,7 +187,7 @@ The ``cursor`` class
.. method:: executemany(query, vars_list)
Execute a database operation (query or command) against all parameter
- tuples or mappings found in the sequence `seq_of_parameters`.
+ tuples or mappings found in the sequence *vars_list*.
The function is mostly useful for commands that update the database:
any result set returned by the query is discarded.