Skip to content

Commit 4795264

Browse files
committed
Typo
1 parent 1839934 commit 4795264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/pages/docs/cursor-based-pagination.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ datasets.
285285
286286
The above is just an example to aid understanding; in a production application,
287287
for most databases it is better to use `WHERE` clauses to implement cursor
288-
pagination rather than using `OFFSET`. Using `WHERE` can leverage indicies
288+
pagination rather than using `OFFSET`. Using `WHERE` can leverage indices
289289
(indexes) to jump directly to the relevant records, whereas `OFFSET` typically
290290
must scan over and discard that number of records. When paginating very large
291291
datasets, `OFFSET` can become more expensive as the value grows, whereas using

0 commit comments

Comments
 (0)