From b3d4fe5efb3e74026e4f75d63774adb328cbee7a Mon Sep 17 00:00:00 2001 From: Misha Moroshko Date: Sat, 18 May 2019 04:22:01 -0700 Subject: [PATCH] Keep hook links consistent (#1323) --- content/docs/hooks-faq.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}