Skip to content

Commit

Permalink
Merge pull request #33 from Naoto-Ida/main
Browse files Browse the repository at this point in the history
fix: Typo of atom creators
  • Loading branch information
vasucp1207 committed Aug 27, 2023
2 parents c07d69a + 0bd8f46 commit 031bf63
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- [Read Only Atoms](https://jotai-tutorial.netlify.app/quick-start/readonly-atoms)
- [Write Only Atoms](https://jotai-tutorial.netlify.app/quick-start/write-only-atoms)
- [Read Write Atoms](https://jotai-tutorial.netlify.app/quick-start/read-write-atoms)
- [Atom Creators](https://jotai-tutorial.netlify.app/quick-start/atom-creaters)
- [Atom Creators](https://jotai-tutorial.netlify.app/quick-start/atom-creators)
- [Async Read Atoms](https://jotai-tutorial.netlify.app/quick-start/async-read-atoms)
- [Async Write Atoms](https://jotai-tutorial.netlify.app/quick-start/async-write-atoms)
- [Official Utils](https://jotai-tutorial.netlify.app/quick-start/official-utils)
Expand Down
2 changes: 1 addition & 1 deletion app/quick-start/Hamburger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function Hamburger() {
<li><a className={`menu__item ${theme}-item`} href="/quick-start/readonly-atoms">Read Only Atoms</a></li>
<li><a className={`menu__item ${theme}-item`} href="/quick-start/write-only-atoms">Write Only Atoms</a></li>
<li><a className={`menu__item ${theme}-item`} href="/quick-start/read-write-atoms">Read Write Atoms</a></li>
<li><a className={`menu__item ${theme}-item`} href="/quick-start/atom-creaters">Atom Creaters</a></li>
<li><a className={`menu__item ${theme}-item`} href="/quick-start/atom-creators">Atom Creators</a></li>
<li><a className={`menu__item ${theme}-item`} href="/quick-start/async-read-atoms">Async Read Atoms</a></li>
<li><a className={`menu__item ${theme}-item`} href="/quick-start/async-write-atoms">Async Write Atoms</a></li>
<li><a className={`menu__item ${theme}-item`} href="/quick-start/official-utils">Official Utils</a></li>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const markdown = `
# Atom Creaters
# Atom Creators
An atom creator means simply a function that returns an atom or a set of atoms. It's just a function and it's not some features that the library provides, but it's an important pattern to make a fairly complex use case. This avoids the boilerplate of having to set up another atom just to update the state of the first.
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion app/quick-start/read-write-atoms/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function Page() {
<Link className={`prev-link prev-link-${theme}`} href="/quick-start/write-only-atoms">
{"<-"} Prev
</Link>
<Link className={`next-link next-link-${theme}`} href="/quick-start/atom-creaters">
<Link className={`next-link next-link-${theme}`} href="/quick-start/atom-creators">
Next {"->"}
</Link>
</div>
Expand Down

0 comments on commit 031bf63

Please sign in to comment.