]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
Fix typo: shoul => should
authorSergey Fedoseev <fedoseev.sergey@gmail.com>
Wed, 17 Aug 2022 16:30:42 +0000 (21:30 +0500)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Wed, 17 Aug 2022 19:08:09 +0000 (21:08 +0200)
docs/api/cursors.rst

index f0f5df75682b88d76d4a8a0248fc99f67a0b45a5..a8d2a4ee6eda33a736e7152427df329bc7d88a03 100644 (file)
@@ -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`.