]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
docs: fix a typo in literal string examples
authorDenis Laxalde <denis@laxalde.org>
Sun, 3 Jul 2022 19:00:24 +0000 (21:00 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Mon, 4 Jul 2022 08:15:53 +0000 (09:15 +0100)
docs/advanced/typing.rst

index df6483b7126a0be306a731237cf8679826121b69..71b4e415ce3d5f650f3bb063a2def9ffbd9fea56 100644 (file)
@@ -134,7 +134,7 @@ Checking literal strings in queries
 -----------------------------------
 
 The `~Cursor.execute()` method and similar should only receive a literal
-string as input, according to :pep:`675`. This mean that the query should
+string as input, according to :pep:`675`. This means that the query should
 come from a literal string in your code, not from an arbitrary string
 expression.