From 8f3042860e9bd483901c031158582864c4339b81 Mon Sep 17 00:00:00 2001
From: Misha Kaletsky <15040698+mmkal@users.noreply.github.com>
Date: Tue, 27 Feb 2024 15:15:27 -0500
Subject: [PATCH] Fix node-postgres.com/apis/... links (#912)

* Fix link: node-postgres.com/apis/client

It was /api/client which 404s

* another one
---
 lib/database.js | 2 +-
 lib/main.js     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/database.js b/lib/database.js
index 330a6c8e..477b4fe2 100644
--- a/lib/database.js
+++ b/lib/database.js
@@ -1679,5 +1679,5 @@ module.exports = config => {
 
 /**
  * @external Result
- * @see https://node-postgres.com/api/result
+ * @see https://node-postgres.com/apis/result
  */
diff --git a/lib/main.js b/lib/main.js
index dcf6d92d..5a612336 100644
--- a/lib/main.js
+++ b/lib/main.js
@@ -415,7 +415,7 @@ module.exports = $main;
 
 /**
  * @external Client
- * @see https://node-postgres.com/api/client
+ * @see https://node-postgres.com/apis/client
  */
 
 /**