From: Denis Laxalde Date: Sun, 3 Jul 2022 19:00:24 +0000 (+0200) Subject: docs: fix a typo in literal string examples X-Git-Tag: 3.1~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13f15c3a5b472911ef6e17d645c2c54aee8bc675;p=thirdparty%2Fpsycopg.git docs: fix a typo in literal string examples --- diff --git a/docs/advanced/typing.rst b/docs/advanced/typing.rst index df6483b71..71b4e415c 100644 --- a/docs/advanced/typing.rst +++ b/docs/advanced/typing.rst @@ -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.