From: Daniele Varrazzo Date: Wed, 10 Feb 2021 14:33:33 +0000 (+0100) Subject: Typo fix X-Git-Tag: 3.0.dev0~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a143d2ea6c33fcf034d6fe89ab07eda2c31a623;p=thirdparty%2Fpsycopg.git Typo fix --- diff --git a/docs/copy.rst b/docs/copy.rst index f8045ade5..c813298f9 100644 --- a/docs/copy.rst +++ b/docs/copy.rst @@ -23,7 +23,7 @@ resulting `Copy` object in a ``with`` block: with cursor.copy("COPY table_name (col1, col2) FROM STDIN") as copy: # pass data to the 'copy' object using write()/write_row() -You can compose a dynamically a COPY statement by using objects from the +You can compose a COPY statement dynamically by using objects from the `psycopg3.sql` module: .. code:: python