Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/routes/concepts/stores.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ When new information needs to be merged into an existing store `reconcile` can b
`reconcile` will determine the differences between new and existing data and initiate updates only when there are _changed_ values, thereby avoiding unnecessary updates.

```jsx
import { createStore, reconcile } from "solid-js/stores"
import { createStore, reconcile } from "solid-js/store"

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