From 655dcf8d0152076a509b888e9554322d41be1ec8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfonso=20Montero=20L=C3=B3pez?= Date: Thu, 18 Jan 2024 17:38:23 +0100 Subject: [PATCH] chore: minor README grammar typos (#970) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a2467824..1d9b28e9 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ format "project:region:instance". ### How to use this Connector To connect to Cloud SQL using the connector, inititalize a `Connector` -object and call it's `connect` method with the proper input parameters. +object and call its `connect` method with the proper input parameters. The `Connector` itself creates connection objects by calling its `connect` method but does not manage database connection pooling. For this reason, it is recommended to use the connector alongside a library that can create connection pools, such as [SQLAlchemy](https://www.sqlalchemy.org/). This will allow for connections to remain open and be reused, reducing connection overhead and the number of connections needed. @@ -167,7 +167,7 @@ with pool.connect() as db_conn: print(row) ``` -To close the `Connector` object's background resources, call it's `close()` method as follows: +To close the `Connector` object's background resources, call its `close()` method as follows: ```python connector.close()