diff --git a/src/content/reference/react/useMemo.md b/src/content/reference/react/useMemo.md index e8552e1666c..917d726fb85 100644 --- a/src/content/reference/react/useMemo.md +++ b/src/content/reference/react/useMemo.md @@ -50,7 +50,7 @@ function TodoList({ todos, tab }) { #### Returns {/*returns*/} -On the initial render, `useMemo` returns the result of calling `calculateValue` with no arguments. +On the initial render, `useMemo` returns the result of calling `calculateValue`. During next renders, it will either return an already stored value from the last render (if the dependencies haven't changed), or call `calculateValue` again, and return the result that `calculateValue` has returned.