From 14b67bef54d2b599fd95cec447e6e06b79280402 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Fri, 24 Mar 2023 15:53:41 +0100 Subject: [PATCH] chore(store): Fix import in readme example, closes #289 --- 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 f48f03ba..f8ff874f 100644 --- a/plugins/store/README.md +++ b/plugins/store/README.md @@ -75,7 +75,7 @@ Values added to the store are not persisted between application loads unless: You can also access Stores from Rust, you can create new stores: ```rust -use tauri_plugin_store::store::StoreBuilder; +use tauri_plugin_store::StoreBuilder; use serde_json::json; fn main() {