From: Daniele Varrazzo Date: Wed, 10 Nov 2021 00:42:26 +0000 (+0100) Subject: Docs typo: a -> an X-Git-Tag: 3.0.3~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5395874a16d8dcb0d50edfd4da7d2f4103534fbe;p=thirdparty%2Fpsycopg.git Docs typo: a -> an --- diff --git a/docs/basic/usage.rst b/docs/basic/usage.rst index ef28d8ece..b592465ad 100644 --- a/docs/basic/usage.rst +++ b/docs/basic/usage.rst @@ -104,7 +104,7 @@ Shortcuts The pattern above is familiar to `!psycopg2` users. However, Psycopg 3 also exposes a few simple extensions which make the above pattern leaner: -- the `Connection` objects exposes a `~Connection.execute()` method, +- the `Connection` objects exposes an `~Connection.execute()` method, equivalent to creating a cursor, calling its `~Cursor.execute()` method, and returning it.