From: Daniele Varrazzo Date: Mon, 13 Sep 2021 21:07:03 +0000 (+0200) Subject: Fix docs case typo X-Git-Tag: 3.0~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71d4cb71c7df42f73fb717590e45f8a1a1b3f10c;p=thirdparty%2Fpsycopg.git Fix docs case typo --- diff --git a/docs/basic/params.rst b/docs/basic/params.rst index 9f9258080..4d08395f8 100644 --- a/docs/basic/params.rst +++ b/docs/basic/params.rst @@ -225,7 +225,7 @@ results) or buffer (for binary results). .. _pg_type: https://www.postgresql.org/docs/current/catalog-pg-type.html -Because not every PostgreSQL type supports binary output, By default the data +Because not every PostgreSQL type supports binary output, by default, the data will be returned in text format. In order to return data in binary format you can create the cursor using `Connection.cursor`\ ``(binary=True)`` or execute the query using `Cursor.execute`\ ``(binary=True)``. A case in which