Skip to content

Commit 14d79e0

Browse files
authored
Kysely README.md
Minor readme updates
1 parent 41dc251 commit 14d79e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/kysely-driver/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The `kysely-driver` package is currently in a beta release.
1414

1515
## Getting started
1616

17-
Setup the PowerSync Database and wrap it with Kysely.
17+
Set up the PowerSync Database and wrap it with Kysely.
1818

1919
Table column object type definitions are not yet available in JavaScript.
2020

@@ -33,8 +33,8 @@ export const powerSyncDb = factory.getInstance();
3333
export const db = wrapPowerSyncWithKysely(powerSyncDb);
3434
```
3535

36-
When defining the app schema with new `TableV2` declarations the TypeScript types for tables can be automatically generated.
37-
See [example](https://github.com/powersync-ja/powersync-js/blob/main/demos/nextjs-supabase-todolist/src/library/powersync/AppSchema.ts) for defining the app schema with `TableV2`.
36+
When defining the app schema with new `TableV2` declarations, the TypeScript types for tables can be automatically generated.
37+
See an [example](https://github.com/powersync-ja/powersync-js/blob/main/demos/nextjs-supabase-todolist/src/library/powersync/AppSchema.ts) of defining the app schema with `TableV2`.
3838

3939
```TypeScript
4040
import { wrapPowerSyncWithKysely } from '@powersync/kysely-driver';
@@ -63,7 +63,7 @@ export const powerSyncDb = factory.getInstance();
6363
export const db = wrapPowerSyncWithKysely<Database>(powerSyncDb)
6464
```
6565

66-
For more information on Kysely typing [here](https://kysely.dev/docs/getting-started#types).
66+
For more information on Kysely typing, see [here](https://kysely.dev/docs/getting-started#types).
6767

6868
Now you are able to use Kysely queries:
6969

0 commit comments

Comments
 (0)