Skip to content

Commit 3a1a8f1

Browse files
authored
docs: fix typo (#2065)
1 parent 46ccde0 commit 3a1a8f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/utilities/async.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const delayedCountAtom = atom(async (get) => {
124124
})
125125
126126
const unwrapped1Atom = unwrap(delayedCountAtom)
127-
// The value is `undefiend` while pending
127+
// The value is `undefined` while pending
128128
129129
const unwrapped2Atom = unwrap(delayedCountAtom, (prev) => prev ?? 0)
130130
// The value is `0` initially, and subsequent updates keep the previous value.

0 commit comments

Comments
 (0)