From 451a96c311f145aea332d17585e5ec2425332474 Mon Sep 17 00:00:00 2001 From: Misha Moroshko Date: Fri, 26 Oct 2018 16:18:29 -0700 Subject: [PATCH] Tip => Note "Tip" usually contains an action for you to perform. "Note" is more appropriate here since it's just an FYI. --- content/docs/hooks-faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/hooks-faq.md b/content/docs/hooks-faq.md index ca01054c..89c0da71 100644 --- a/content/docs/hooks-faq.md +++ b/content/docs/hooks-faq.md @@ -396,7 +396,7 @@ In large component trees, an alternative we recommend is to pass down a `dispatc const TodosDispatch = React.createContext(null); function TodosApp() { - // Tip: `dispatch` won't change between re-renders + // Note: `dispatch` won't change between re-renders const [todos, dispatch] = useReducer(todosReducer); return (