From 246451b48541274090a35ae84147eab78157c0cf Mon Sep 17 00:00:00 2001 From: David Precious Date: Mon, 23 Feb 2026 13:56:37 +0000 Subject: [PATCH] Typo fix in PgPass deprecation (funciton) Simple typo fix. --- packages/pg/lib/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pg/lib/client.js b/packages/pg/lib/client.js index 02dca96be..2de1f48e9 100644 --- a/packages/pg/lib/client.js +++ b/packages/pg/lib/client.js @@ -25,7 +25,7 @@ const queryQueueDeprecationNotice = nodeUtils.deprecate( const pgPassDeprecationNotice = nodeUtils.deprecate( () => {}, 'pgpass support is deprecated and will be removed in a future version. ' + - 'You can provide an async function as the password property to the Client/Pool constructor that returns a password instead. Within this funciton you can call the pgpass module in your own code.' + 'You can provide an async function as the password property to the Client/Pool constructor that returns a password instead. Within this function you can call the pgpass module in your own code.' ) const byoPromiseDeprecationNotice = nodeUtils.deprecate(