From 4e1d96082a931188fadf5bc7682794ae8063fc10 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 23 Feb 2012 14:28:11 +0000 Subject: [PATCH] Typos fixed in copy methods --- doc/src/cursor.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/cursor.rst b/doc/src/cursor.rst index 59aa9ac6..016f74c7 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.