From: Sergey Fedoseev Date: Wed, 17 Aug 2022 16:30:42 +0000 (+0500) Subject: Fix typo: shoul => should X-Git-Tag: 3.1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a40e351ce10018ef641d1fee0ea0549abd3ea0b4;p=thirdparty%2Fpsycopg.git Fix typo: shoul => should --- diff --git a/docs/api/cursors.rst b/docs/api/cursors.rst index f0f5df756..a8d2a4ee6 100644 --- a/docs/api/cursors.rst +++ b/docs/api/cursors.rst @@ -67,7 +67,7 @@ The `!Cursor` class :param prepare: Force (`!True`) or disallow (`!False`) preparation of the query. By default (`!None`) prepare automatically. See :ref:`prepared-statements`. - :param binary: Specify whether the server shoul return data in binary + :param binary: Specify whether the server should return data in binary format (`!True`) or in text format (`!False`). By default (`!None`) return data as requested by the cursor's `~Cursor.format`. @@ -326,7 +326,7 @@ The `!ServerCursor` class :type query: `!str`, `!bytes`, `sql.SQL`, or `sql.Composed` :param params: The parameters to pass to the query, if any. :type params: Sequence or Mapping - :param binary: Specify whether the server shoul return data in binary + :param binary: Specify whether the server should return data in binary format (`!True`) or in text format (`!False`). By default (`!None`) return data as requested by the cursor's `~Cursor.format`.