Skip to content

Commit 44b2810

Browse files
committed
Fixing broken links
1 parent 7ec7875 commit 44b2810

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/content/docs/durable-objects/api/legacy-kv-storage-api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Render, Type, MetaInfo, GlossaryTooltip, TypeScriptExample, Details } f
1010
:::note
1111
This page documents storage API for legacy KV-backed Durable Objects.
1212

13-
For the newer SQLite-backed Durable Object storage API, refer to [SQLite-backed Durable Object Storage](/durable-objects/api/sqlite-backed-storage).
13+
For the newer SQLite-backed Durable Object storage API, refer to [SQLite-backed Durable Object Storage](/durable-objects/api/sqlite-storage-api).
1414
:::
1515

1616
<Render file="api-storage-introduction" product="durable-objects" />

src/content/docs/durable-objects/api/sqlite-storage-api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Render, Type, MetaInfo, GlossaryTooltip, TypeScriptExample, Details } f
1010
:::note
1111
This page documents storage API for the newer SQLite-backed Durable Objects.
1212

13-
For the legacy KV-backed Durable Object storage API, see [KV-backed Durable Object Storage (Legacy)](/durable-objects/api/legacy-kv-backed-storage/).
13+
For the legacy KV-backed Durable Object storage API, see [KV-backed Durable Object Storage (Legacy)](/durable-objects/api/legacy-kv-storage-api/).
1414
:::
1515

1616
<Render file="api-storage-introduction" product="durable-objects" />
@@ -201,7 +201,7 @@ ctx.storage.onNextSessionRestoreBookmark(bookmark);
201201

202202
### `sql`
203203

204-
`sql` is a readonly property of type `DurableObjectStorage` encapsulating the [SQL API](/durable-objects/api/sqlite-backed-storage/#sql-api).
204+
`sql` is a readonly property of type `DurableObjectStorage` encapsulating the [SQL API](/durable-objects/api/sqlite-storage-api/#synchronous-sql-api).
205205

206206
## Related resources
207207

src/content/docs/durable-objects/api/state.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { Tabs, TabItem, GlossaryTooltip, Type, MetaInfo } from "~/components";
1111

1212
The `DurableObjectState` interface is accessible as an instance property on the <GlossaryTooltip term="Durable Object class">Durable Object class</GlossaryTooltip>. This interface encapsulates methods that modify the state of a Durable Object, for example which WebSockets are attached to a Durable Object or how the runtime should handle concurrent Durable Object requests.
1313

14-
The `DurableObjectState` interface is different from the <GlossaryTooltip term="Storage API">Storage API</GlossaryTooltip> in that it does not have top-level methods which manipulate persistent application data. These methods are instead encapsulated in the [`DurableObjectStorage`](/durable-objects/api/storage-api) interface and accessed by [`DurableObjectState::storage`](/durable-objects/api/state/#storage).
14+
The `DurableObjectState` interface is different from the <GlossaryTooltip term="Storage API">Storage API</GlossaryTooltip> in that it does not have top-level methods which manipulate persistent application data. These methods are instead encapsulated in the [`DurableObjectStorage`](/durable-objects/api/sqlite-storage-api) interface and accessed by [`DurableObjectState::storage`](/durable-objects/api/state/#storage).
1515

1616
<Tabs> <TabItem label="JavaScript" icon="seti:javascript">
1717

@@ -285,8 +285,8 @@ export class MyDurableObject extends DurableObject {
285285

286286
### `storage`
287287

288-
`storage` is a readonly property of type `DurableObjectStorage` encapsulating the [Storage API](/durable-objects/api/storage-api).
288+
`storage` is a readonly property of type `DurableObjectStorage` encapsulating the [Storage API](/durable-objects/api/sqlite-storage-api/).
289289

290290
## Related resources
291291

292-
- [Durable Objects: Easy, Fast, Correct Choose Three](https://blog.cloudflare.com/durable-objects-easy-fast-correct-choose-three/).
292+
- [Durable Objects: Easy, Fast, Correct - Choose Three](https://blog.cloudflare.com/durable-objects-easy-fast-correct-choose-three/).

src/content/partials/durable-objects/api-storage-introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ accessing multiple key-value pairs.
2424
<sup>2</sup> KV API methods like `get()`, `put()`, `delete()`, or `list()` store
2525
data in a hidden SQLite table.
2626

27-
<sup>3</sup> For SQLite-backed Durable Objects, you can use [synchronous KV API methods](/durable-objects/api/sqlite-backed-storage/#synchronous-kv-api) using `ctx.storage.kv`. KV-backed Durable Objects use [asynchronous KV API methods](/durable-objects/api/legacy-kv-backed-storage/#asynchronous-kv-api).
27+
<sup>3</sup> For SQLite-backed Durable Objects, you can use [synchronous KV API methods](/durable-objects/api/sqlite-storage-api/#synchronous-kv-api) using `ctx.storage.kv`. KV-backed Durable Objects use [asynchronous KV API methods](/durable-objects/api/legacy-kv-storage-api/#asynchronous-kv-api).
2828

2929
</Details>

0 commit comments

Comments
 (0)