Skip to content

Commit

Permalink
Merge pull request #40 from PartMan7/patch-1
Browse files Browse the repository at this point in the history
Fix typos in documentation and filenames
  • Loading branch information
vasucp1207 committed Apr 8, 2024
2 parents 8f0bcd4 + 59c2a69 commit 010a9f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 parent's value will also update the derived atom.
These atoms takes a callback with a parameter \`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
2 changes: 1 addition & 1 deletion declartion.d.ts → declaration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ declare module "react" {
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
rel?: string;
}
};
};

0 comments on commit 010a9f8

Please sign in to comment.