Skip to content

Commit 2ba7b30

Browse files
committed
Fix more readme typos
1 parent 9beeb38 commit 2ba7b30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Are you running a service, using an SQL database, and want to support cursor sty
1111
## What is cursor pagination?
1212

1313
Cursor pagination was made popular by GraphQL, and this library conforms to the [GraphQL Cursor Connections Specification
14-
](https://relay.dev/graphql/connections.htm) meaning it's compatible wtih [Relay](https://relay.dev/). However it is also useful outside of GraphQL.
14+
](https://relay.dev/graphql/connections.htm) meaning it's compatible with [Relay](https://relay.dev/). However it is also useful outside of GraphQL.
1515

1616
- First you specify the sort config. This contains a list of field names with their orders. It must contain a unique key.
1717
- Then you request how many items you would like to fetch with `first`.
@@ -24,7 +24,7 @@ The use of cursors means if items are added/removed between requests, the user w
2424

2525
## Usage
2626

27-
The following shows how you could use this library with [knex](https://github.com/knex/knex) as an example, but it should be possible with any query builder, or even raw SQL providing you are using prepared statements.
27+
The following shows how you could use this library with [knex](https://github.com/knex/knex) as an example, but it should be possible with any query builder, or even raw SQL provided you are using prepared statements.
2828

2929
```ts
3030
import knex from 'knex';

0 commit comments

Comments
 (0)