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 (