Skip to content

Commit c702605

Browse files
committed
Doc fix
2 parents b38e3a6 + 60b12ba commit c702605

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
],
1515
"homepage": "https://linked-ql.netlify.app/",
1616
"icon": "https://webqit.io/icon.svg",
17-
"version": "0.4.5001",
17+
"version": "0.4.5000-next.3",
1818
"license": "MIT",
1919
"repository": {
2020
"type": "git",

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)