Skip to content

Commit feb230d

Browse files
authored
fix: tiny typo (#134)
1 parent 2ba9fba commit feb230d

File tree

1 file changed

+1
-1
lines changed
  • exercises/02.latest-ref/01.problem.ref

1 file changed

+1
-1
lines changed

exercises/02.latest-ref/01.problem.ref/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function useDebounce<Callback extends (...args: Array<unknown>) => unknown>(
2121
// 🐨 create a latest ref (via useRef and useEffect) here
2222

2323
// use the latest version of the callback here:
24-
// 💰 you'll need to pass an annonymous function to debounce. Do *not*
24+
// 💰 you'll need to pass an anonymous function to debounce. Do *not*
2525
// simply change this to `debounce(latestCallbackRef.current, delay)`
2626
// as that won't work. Can you think of why?
2727
return useMemo(() => debounce(callback, delay), [callback, delay])

0 commit comments

Comments
 (0)