From eef42a2d1c84ce995b0bd265bf008473a408777e Mon Sep 17 00:00:00 2001 From: ANANYA542 Date: Mon, 10 Nov 2025 15:01:58 +0530 Subject: [PATCH] docs(plugin/store): fix duplicated 'calls' in comment (#3583) --- src/content/docs/plugin/store.mdx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/content/docs/plugin/store.mdx b/src/content/docs/plugin/store.mdx index a76a7dcfe..174e35d6f 100644 --- a/src/content/docs/plugin/store.mdx +++ b/src/content/docs/plugin/store.mdx @@ -116,8 +116,9 @@ pub fn run() { .setup(|app| { // Create a new store or load the existing one // this also put the store in the app's resource table - // so your following calls `store` calls (from both rust and js) - // will reuse the same store + // so your following `store` calls (from both Rust and JS) + // will reuse the same store. + let store = app.store("store.json")?; // Note that values must be serde_json::Value instances,