From b61382f7ee30280510b08197751c012eca312ca6 Mon Sep 17 00:00:00 2001 From: PartMan <47669599+PartMan7@users.noreply.github.com> Date: Wed, 3 Apr 2024 10:42:05 +0530 Subject: [PATCH 1/2] chore: Fix typo --- app/quick-start/readonly-atoms/markdown.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/quick-start/readonly-atoms/markdown.ts b/app/quick-start/readonly-atoms/markdown.ts index cff889a..136373a 100644 --- a/app/quick-start/readonly-atoms/markdown.ts +++ b/app/quick-start/readonly-atoms/markdown.ts @@ -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'); From 59c2a69f78d7bf0567848f03aafa01a461555d2a Mon Sep 17 00:00:00 2001 From: PartMan <47669599+PartMan7@users.noreply.github.com> Date: Wed, 3 Apr 2024 10:44:22 +0530 Subject: [PATCH 2/2] Rename declartion.d.ts to declaration.d.ts --- declartion.d.ts => declaration.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename declartion.d.ts => declaration.d.ts (98%) diff --git a/declartion.d.ts b/declaration.d.ts similarity index 98% rename from declartion.d.ts rename to declaration.d.ts index d3e7dd1..a89a86a 100644 --- a/declartion.d.ts +++ b/declaration.d.ts @@ -4,4 +4,4 @@ declare module "react" { interface HTMLAttributes extends AriaAttributes, DOMAttributes { rel?: string; } -}; \ No newline at end of file +};