diff --git a/content/docs/hooks-reference.md b/content/docs/hooks-reference.md index 1aa14c7f285..c273e2a00ee 100644 --- a/content/docs/hooks-reference.md +++ b/content/docs/hooks-reference.md @@ -47,7 +47,7 @@ During subsequent re-renders, the first value returned by `useState` will always >Note > ->React guarantees that `setState` function identity is stable and won't change on re-renders. This is why it's safe to omit from the `useEffect` or `useCallback` dependency list. +>React guarantees that `setState` function identity is stable and won't change on re-renders. This is why it is safe to omit the `setState` function from the `useEffect` or `useCallback` dependency list. #### Functional updates {#functional-updates} @@ -286,7 +286,7 @@ function Counter() { >Note > ->React guarantees that `dispatch` function identity is stable and won't change on re-renders. This is why it's safe to omit from the `useEffect` or `useCallback` dependency list. +>React guarantees that `dispatch` function identity is stable and won't change on re-renders. This is why it is safe to omit the `setState` function from the `useEffect` or `useCallback` dependency list. #### Specifying the initial state {#specifying-the-initial-state}