diff --git a/content/docs/hooks-faq.md b/content/docs/hooks-faq.md index 168eb2da..a7583966 100644 --- a/content/docs/hooks-faq.md +++ b/content/docs/hooks-faq.md @@ -844,9 +844,9 @@ Traditionally, performance concerns around inline functions in React have been r }, [a, b]); ``` -* The [`useMemo` Hook](/docs/hooks-faq.html#how-to-memoize-calculations) makes it easier to control when individual children update, reducing the need for pure components. +* The [`useMemo`](/docs/hooks-faq.html#how-to-memoize-calculations) Hook makes it easier to control when individual children update, reducing the need for pure components. -* Finally, the `useReducer` Hook reduces the need to pass callbacks deeply, as explained below. +* Finally, the [`useReducer`](/docs/hooks-reference.html#usereducer) Hook reduces the need to pass callbacks deeply, as explained below. ### How to avoid passing callbacks down? {#how-to-avoid-passing-callbacks-down}