Skip to content

Commit 72c580b

Browse files
committed
docs: fix inline doc refs
1 parent 335bcd7 commit 72c580b

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kitsonk/kv-toolbox",
3-
"version": "0.19.0-beta.2",
3+
"version": "0.19.0-beta.3",
44
"exports": {
55
".": "./toolbox.ts",
66
"./batched_atomic": "./batched_atomic.ts",

toolbox.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/**
2+
* # KV Toolbox
3+
*
24
* Provides a toolbox for interacting with a Deno KV store, including the
35
* ability to store values in an encrypted fashion. The main module exports a
46
* {@linkcode ToolboxKv} class that augments the Deno KV store with additional
@@ -49,19 +51,19 @@
4951
* capabilities of the toolbox are provided by additional exports of the
5052
* library:
5153
*
52-
* - [batched_atomic](./doc/batched_atomic/~) - Provides a way to perform
54+
* - [batched_atomic](../doc/batched_atomic/~) - Provides a way to perform
5355
* atomic operations in batches while working around the limitations of
5456
* Deno KV.
55-
* - [blob](./doc/blob/~) - Provides a way to store arbitrarily large binary
57+
* - [blob](../doc/blob/~) - Provides a way to store arbitrarily large binary
5658
* data in Deno KV.
57-
* - [crypto](./doc/crypto/~) - Provides a way to encrypt and decrypt data in
59+
* - [crypto](../doc/crypto/~) - Provides a way to encrypt and decrypt data in
5860
* Deno KV.
59-
* - [json](./doc/json/~) - Provides utilities for handling Deno KV entries,
61+
* - [json](../doc/json/~) - Provides utilities for handling Deno KV entries,
6062
* keys, and values as structures which can be serialized and deserialized to
6163
* JSON.
62-
* - [keys](./doc/keys/~) - Provides convenience functions for working with
64+
* - [keys](../doc/keys/~) - Provides convenience functions for working with
6365
* keys in Deno KV.
64-
* - [ndjson](./doc/ndjson/~) - Utilities for handling NDJSON which is a method
66+
* - [ndjson](../doc/ndjson/~) - Utilities for handling NDJSON which is a method
6567
* for encoding JSON in a way that supports streaming, where each JSON entity
6668
* is separated with a newline.
6769
*

0 commit comments

Comments
 (0)