From 467600434beadc5e88b60b26a14b0ad1fd532fd1 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Mon, 6 Mar 2023 16:00:16 +0100 Subject: [PATCH] small wording change --- plugins/store/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/store/README.md b/plugins/store/README.md index db8b568a..c76c354c 100644 --- a/plugins/store/README.md +++ b/plugins/store/README.md @@ -60,7 +60,7 @@ await store.set("some-key", { value: 5 }); const val = await store.get("some-key"); assert(val, { value: 5 }); -await store.save(); // this manually saves the store, otherwise the store is saved when your app is closed +await store.save(); // this manually saves the store, otherwise the store is only saved when your app is closed ``` ### Persisting values