Skip to content

Commit

Permalink
Merge branch 'main' of github.com:dbritto-dev/zustand into update-doc…
Browse files Browse the repository at this point in the history
…s-content
  • Loading branch information
dbritto-dev committed Apr 27, 2024
2 parents ee07ba5 + b66ccd5 commit 626e972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion old_docs/guides/updating-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ You can also use [Ramda](https://ramdajs.com/):
```ts
ramdaInc: () =>
set(R.over(R.lensPath(["deep", "nested", "obj", "count"]), (c) => c + 1)),
set(R.modifyPath(["deep", "nested", "obj", "count"], (c) => c + 1)),
```
Both ramda and optics-ts also work with types.
Expand Down

0 comments on commit 626e972

Please sign in to comment.