From 18502728098848f5b8c65291745e4b4f1607f314 Mon Sep 17 00:00:00 2001 From: Sven Fehler <38158426+Sv443@users.noreply.github.com> Date: Sun, 21 Apr 2024 15:55:11 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 295bde0..3abd17f 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Like this template? Please consider [supporting the development ❤️](https:// The entrypoint for the userscript. This is where you should call your own code from. - **`src/config.ts`** This file contains the DataStore instance that should be used to hold your userscript's configuration object. - The DataStore class is very powerful and does a lot of the heavy lifting for you. More instances can also be created to hold different types of data that should be persisted between sessions, cached in-memory for fast access and be tagged with a version number, so migration functions can be used to migrate the data to any upcoming format. + The DataStore class is very powerful and does a lot of the heavy lifting for you. More instances can also be created to hold different types of data that should be persisted between sessions, cached in-memory for fast, synchronous access and be tagged with a version number, so migration functions can be used to migrate the data to any upcoming format. For more info, please read the [DataStore documentation.](https://github.com/Sv443-Network/UserUtils#datastore) - **`src/constants.ts`** Contains some constant variables that are used throughout the userscript's runtime code.