Skip to content

Commit cbebe2a

Browse files
committed
Fix typo
1 parent 4e30ce7 commit cbebe2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/concepts/stores.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ When new information needs to be merged into an existing store `reconcile` can b
423423
`reconcile` will determine the differences between new and existing data and initiate updates only when there are _changed_ values, thereby avoiding unnecessary updates.
424424

425425
```jsx
426-
const { createStore, reconcile } from "solid-js/stores"
426+
import { createStore, reconcile } from "solid-js/stores"
427427

428428
const [data, setData] = createStore({
429429
animals: ['cat', 'dog', 'bird', 'gorilla']

0 commit comments

Comments
 (0)