From 55f71cb62bdb60b732da0c240b381b15072a9831 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Fri, 5 Jun 2020 13:54:19 +0100 Subject: [PATCH] fix connection links --- asyncpg/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asyncpg/connection.py b/asyncpg/connection.py index 5fa2ddae..a6941132 100644 --- a/asyncpg/connection.py +++ b/asyncpg/connection.py @@ -1500,7 +1500,7 @@ async def connect(dsn=None, *, If both *dsn* and keyword arguments are specified, the latter override the corresponding values parsed from the connection URI. The default values for the majority of arguments can be specified - using `environment variables `_. + using `environment variables `_. Returns a new :class:`~asyncpg.connection.Connection` object. @@ -1609,7 +1609,7 @@ async def connect(dsn=None, *, :param dict server_settings: An optional dict of server runtime parameters. Refer to PostgreSQL documentation for - a `list of supported options `_. + a `list of supported options `_. :param Connection connection_class: Class of the returned connection object. Must be a subclass of