Skip to content

Commit 93f6145

Browse files
fix: api reference url change (#39)
1 parent 1e4adb2 commit 93f6145

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/user-documentation/upload-download.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Uploading your data to Swarm is easy with `bee-js`. Based on your needs you can
1515

1616
### Data
1717

18-
You can upload and retrieve any `string` or `Uint8Array` data with [`uploadData`](./api-reference/classes/bee#uploaddata) and [`downloadData`](./api-reference/classes/bee#downloaddata) functions.
18+
You can upload and retrieve any `string` or `Uint8Array` data with [`uploadData`](./api/classes/bee#uploaddata) and [`downloadData`](./api/classes/bee#downloaddata) functions.
1919
<Tabs
2020
groupId="lang_preferrence"
2121
defaultValue="ts"
@@ -96,7 +96,7 @@ console.log(new TextDecoder("utf-8").decode(retrievedFile.data)) // prints 'Bee
9696
</TabItem>
9797
</Tabs>
9898

99-
In browsers, you can upload directly `File` type. The filename is taken from the file object itself, but can be overwritten through the second argument of the `uploadFile` function (see the [API docs](./api-reference/classes/bee#uploadfile))
99+
In browsers, you can upload directly `File` type. The filename is taken from the file object itself, but can be overwritten through the second argument of the `uploadFile` function (see the [API docs](./api/classes/bee#uploadfile))
100100

101101
<Tabs
102102
groupId="lang_preferrence"

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module.exports = {
3232
position: 'left',
3333
},
3434
{
35-
to: 'docs/api-reference',
35+
to: 'docs/api',
3636
activeBasePath: 'docs',
3737
label: 'API Reference',
3838
position: 'left',

0 commit comments

Comments
 (0)