Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LeopoldArkham committed Oct 2, 2023
1 parent 031bf63 commit c6c4515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/quick-start/readonly-atoms/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const textAtom = atom('readonly');
const uppercase = atom((get) => get(textAtom).toUpperCase());
~~~
These atoms takes a callback with a paramater \`get\` which allows us to read other atoms value. Changing the value of parent will also updated the derived atom.
These atoms takes a callback with a paramater \`get\` which allows us to read other atoms value. Changing the parent's value will also update the derived atom.
~~~js
const firstName = atom('John');
Expand Down

0 comments on commit c6c4515

Please sign in to comment.