Skip to content

Commit

Permalink
fix: store name in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
omarluq committed Jul 6, 2024
1 parent 2ab65e7 commit ca4b621
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ If you prefer not to use a build system, you can load `stimulus-store` in a `<sc
const application = Stimulus.Application.start();
const helloStore = StimulusStore.createStore({
name: "myStore",
name: "helloStore",
type: String,
initialValue: "Hello World!",
});
Expand Down
3 changes: 1 addition & 2 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ If you prefer not to use a build system, you can load `stimulus-store` in a `<sc
const application = Stimulus.Application.start();
const helloStore = StimulusStore.createStore({
name: "myStore",
name: "helloStore",
type: String,
initialValue: "Hello World!",
});
Expand All @@ -54,4 +54,3 @@ If you prefer not to use a build system, you can load `stimulus-store` in a `<sc
</body>
</html>
```

0 comments on commit ca4b621

Please sign in to comment.