Skip to content

Commit

Permalink
Adjust slugs in docs pages
Browse files Browse the repository at this point in the history
  • Loading branch information
runjak committed Mar 6, 2024
1 parent 0549f3f commit 101df4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/pages/apis/cursor.mdx
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/apis/result.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: pg.Result
slug: /api/result
slug: /apis/result
---

The `pg.Result` shape is returned for every successful query.
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/apis/types.mdx
Original file line number Diff line number Diff line change
@@ -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).

0 comments on commit 101df4d

Please sign in to comment.