From 101df4de804ff20c6b183195f99083220ffe62bd Mon Sep 17 00:00:00 2001 From: Jakob Runge Date: Sat, 24 Feb 2024 11:11:04 +0100 Subject: [PATCH] Adjust slugs in docs pages --- docs/pages/apis/cursor.mdx | 2 +- docs/pages/apis/result.mdx | 2 +- docs/pages/apis/types.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pages/apis/cursor.mdx b/docs/pages/apis/cursor.mdx index 286e9ca5e..eadde4bfc 100644 --- a/docs/pages/apis/cursor.mdx +++ b/docs/pages/apis/cursor.mdx @@ -1,6 +1,6 @@ --- title: pg.Cursor -slug: /api/cursor +slug: /apis/cursor --- A cursor can be used to efficiently read through large result sets without loading the entire result-set into memory ahead of time. It's useful to simulate a 'streaming' style read of data, or exit early from a large result set. The cursor is passed to `client.query` and is dispatched internally in a way very similar to how normal queries are sent, but the API it presents for consuming the result set is different. diff --git a/docs/pages/apis/result.mdx b/docs/pages/apis/result.mdx index 62888f112..314d50497 100644 --- a/docs/pages/apis/result.mdx +++ b/docs/pages/apis/result.mdx @@ -1,6 +1,6 @@ --- title: pg.Result -slug: /api/result +slug: /apis/result --- The `pg.Result` shape is returned for every successful query. diff --git a/docs/pages/apis/types.mdx b/docs/pages/apis/types.mdx index 55f3b0009..cc8e4c1e3 100644 --- a/docs/pages/apis/types.mdx +++ b/docs/pages/apis/types.mdx @@ -1,6 +1,6 @@ --- title: Types -slug: /api/types +slug: /apis/types --- These docs are incomplete, for now please reference [pg-types docs](https://github.com/brianc/node-pg-types).