Skip to content

Commit 2da8478

Browse files
committed
Doc fix
1 parent 04841a3 commit 2da8478

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

site/capabilities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ LinkedQL bundles an embeddable SQL engine, **FlashQL**, that brings its full cap
169169
> Run a full SQL engine in memory — same semantics, zero setup.
170170
171171
```js
172-
import { FlashClient } from '@linked-db/linked-ql/flash';
172+
import { FlashClient } from '@linked-db/linked-ql/flashql';
173173
const client = new FlashClient();
174174

175175
await client.query(`CREATE TABLE users (id SERIAL, name TEXT)`);

site/flashql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Modern applications need database power without a network layer or the overhead
2121
Just spin up an instance in-app and run SQL:
2222

2323
```js
24-
import { FlashClient } from '@linked-db/linked-ql/flash';
24+
import { FlashClient } from '@linked-db/linked-ql/flashql';
2525

2626
const db = new FlashClient();
2727
await db.connect();

site/flashql/foreign-io.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ With Foreign I/O, you can stream data on demand, materialize remote datasets loc
1919
Each mode requires FlashQL to be initialized with a remote connection factory:
2020

2121
```js
22-
import { FlashClient } from '@linked-db/linked-ql/flash';
23-
import { PGClient } from '@linked-db/linked-ql/pg';
22+
import { FlashClient } from '@linked-db/linked-ql/flashql';
23+
import { PGClient } from '@linked-db/linked-ql/postgres';
2424

2525
const local = new FlashClient({
2626
onCreateRemoteClient: async (opts) => {

site/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ LinkedQL is both:
1111

1212
The broader idea captures the **intent** behind each tool in the compensatory layers built around SQL — query builders, ORMs, schema mappers, GraphQL servers, and other application-level boilerplates — and enables these natively within the language.
1313

14-
This brings us to SQL that finally internalizes the external capabilities built around it — **an upgrade**.
14+
The result is SQL that finally internalizes the external capabilities built around it — **an upgrade**.
1515

1616
Think of LinkedQL as **SQL, upgraded** — for modern applications.
1717

0 commit comments

Comments
 (0)