summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2012-02-23 14:28:11 +0000
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2012-02-23 14:41:41 +0000
commit4e1d96082a931188fadf5bc7682794ae8063fc10 (patch)
tree027dd73c2a0995247d754c799bcc22be303befbc
parent1bc73896dc2c949fa29c2b4aed5f0c249083401a (diff)
downloadpsycopg2-4e1d96082a931188fadf5bc7682794ae8063fc10.tar.gz
Typos fixed in copy methods
-rw-r--r--doc/src/cursor.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/cursor.rst b/doc/src/cursor.rst
index 59aa9ac..016f74c 100644
--- a/doc/src/cursor.rst
+++ b/doc/src/cursor.rst
@@ -467,7 +467,7 @@ The ``cursor`` class
:param table: name of the table to copy data into.
:param sep: columns separator expected in the file. Defaults to a tab.
:param null: textual representation of :sql:`NULL` in the file.
- The default is the two character string ``\N``.
+ The default is the two characters string ``\N``.
:param size: size of the buffer used to read from the file.
:param columns: iterable with name of the columns to import.
The length and types should match the content of the file to read.
@@ -500,7 +500,7 @@ The ``cursor`` class
:param table: name of the table to copy data from.
:param sep: columns separator expected in the file. Defaults to a tab.
:param null: textual representation of :sql:`NULL` in the file.
- The default is the two character string ``\N``.
+ The default is the two characters string ``\N``.
:param columns: iterable with name of the columns to export.
If not specified, export all the columns.