From 6f2459005484663c086541288b9fc6e2a227c2f7 Mon Sep 17 00:00:00 2001 From: Stephen Cresswell <229672+cressie176@users.noreply.github.com> Date: Sun, 27 Aug 2023 13:56:27 +0100 Subject: [PATCH] Improve README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 03ae835..aee66ee 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ module.exports = class DatabaseFactory { const resource = await pool.initialise(); ``` -Initialisise the pool, only yielding after the minimum number of resources have been created or if the initialiseTimeout is exceeded. You do not need to wait for the pool to initialise, however it is recommented you do so as to ensure your factory is correctly configured and has access to the required systems. +Initialise the pool, only yielding after the minimum number of resources have been created or if the initialiseTimeout is exceeded. You do not need to wait for the pool to initialise, however it is recommented you do so as to ensure your factory is correctly configured and has access to the required systems. ### acquire() : Promise<T>