Skip to content

Commit eef42a2

Browse files
authored
docs(plugin/store): fix duplicated 'calls' in comment (#3583)
1 parent 187e904 commit eef42a2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/content/docs/plugin/store.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,9 @@ pub fn run() {
116116
.setup(|app| {
117117
// Create a new store or load the existing one
118118
// this also put the store in the app's resource table
119-
// so your following calls `store` calls (from both rust and js)
120-
// will reuse the same store
119+
// so your following `store` calls (from both Rust and JS)
120+
// will reuse the same store.
121+
121122
let store = app.store("store.json")?;
122123

123124
// Note that values must be serde_json::Value instances,

0 commit comments

Comments
 (0)