fix: useMemo details (#6980)

Memorizes" vs. "Memoizes": The term "memorizes" can imply simply remembering something, while "memoizes" is a specific term in computer science meaning to cache the result of a function. Using "memoizes" is more accurate in this context.
pull/6983/head
Saeed 3 months ago committed by GitHub
parent ac18df727f
commit b78252be59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/react/content/usememo@w3bNp7OkehI1gjx8NzlC8.md

@ -1,6 +1,6 @@
# useMemo # useMemo
`useMemo` is a React hook that memorizes the result of a function. It is used to optimize performance by caching the result of a function and returning the cached result when the inputs to the function have not changed. `useMemo` is a React hook that memoizes the result of a function. It is used to optimize performance by caching the result of a function and returning the cached result when the inputs to the function have not changed.
Learn more from the following resources: Learn more from the following resources:

Loading…
Cancel
Save