Skip to content

Commit

Permalink
Fix reference link (#11959)
Browse files Browse the repository at this point in the history
  • Loading branch information
LitoMore authored Apr 24, 2024
1 parent 6432593 commit e62f8ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api-reference/storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ All commands in an extension have shared access to the stored data. Extensions c
Values can be managed through functions such as [`LocalStorage.getItem`](storage.md#localstorage.getitem), [`LocalStorage.setItem`](storage.md#localstorage.setitem), or [`LocalStorage.removeItem`](storage.md#localstorage.removeitem). A typical use case is storing user-related data, for example entered todos.

{% hint style="info" %}
The API is not meant to store large amounts of data. For this, use [Node's built-in APIs to write files](https://nodejs.dev/en/learn/writing-files-with-nodejs/), e.g. to the extension's [support directory](environment.md#environment).
The API is not meant to store large amounts of data. For this, use [Node's built-in APIs to write files](https://nodejs.org/en/learn/manipulating-files/writing-files-with-nodejs), e.g. to the extension's [support directory](environment.md#environment).
{% endhint %}

## API Reference
Expand Down

0 comments on commit e62f8ad

Please sign in to comment.