From 4706472df96913479231bd28f56892690d98750d Mon Sep 17 00:00:00 2001 From: Grant <109616836+4dex@users.noreply.github.com> Date: Wed, 5 Jul 2023 09:48:47 -0600 Subject: [PATCH] Update connection_pool.rst typo --- docs/references/connection_pool.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/references/connection_pool.rst b/docs/references/connection_pool.rst index 7464f9072..aa0a904f6 100644 --- a/docs/references/connection_pool.rst +++ b/docs/references/connection_pool.rst @@ -5,7 +5,7 @@ Connection Pool A connection pool is a cache of reusable database connections. It allows serving many HTTP requests using few database connections. Every request to an :doc:`API resource ` borrows a connection from the pool to start a :doc:`transaction `. -Minimizing connections it’s paramount to performance. Each PostgreSQL connection creates a process, having too many can exhaust available resources. +Minimizing connections is paramount to performance. Each PostgreSQL connection creates a process, having too many can exhaust available resources. .. _pool_growth_limit: .. _dyn_conn_pool: