Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/user-documentation/upload-download.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Uploading your data to Swarm is easy with `bee-js`. Based on your needs you can

### Data

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.
You can upload and retrieve any `string` or `Uint8Array` data with [`uploadData`](./api/classes/bee#uploaddata) and [`downloadData`](./api/classes/bee#downloaddata) functions.
<Tabs
groupId="lang_preferrence"
defaultValue="ts"
Expand Down Expand Up @@ -96,7 +96,7 @@ console.log(new TextDecoder("utf-8").decode(retrievedFile.data)) // prints 'Bee
</TabItem>
</Tabs>

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))
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))

<Tabs
groupId="lang_preferrence"
Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = {
position: 'left',
},
{
to: 'docs/api-reference',
to: 'docs/api',
activeBasePath: 'docs',
label: 'API Reference',
position: 'left',
Expand Down