Skip to content

Commit

Permalink
fix(typos): replace word "ever" with "every" (#6039)
Browse files Browse the repository at this point in the history
  • Loading branch information
vicsantizo authored May 16, 2023
1 parent fd8ba03 commit bea2ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/reference/react-dom/components/common.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ React will also call your `ref` callback whenever you pass a *different* `ref` c

#### Parameters {/*ref-callback-parameters*/}

* `node`: A DOM node or `null`. React will pass you the DOM node when the ref gets attached, and `null` when the ref gets detached. Unless you pass the same function reference for the `ref` callback on every render, the callback will get temporarily detached and re-attached during ever re-render of the component.
* `node`: A DOM node or `null`. React will pass you the DOM node when the ref gets attached, and `null` when the ref gets detached. Unless you pass the same function reference for the `ref` callback on every render, the callback will get temporarily detached and re-attached during every re-render of the component.

#### Returns {/*returns*/}

Expand Down

0 comments on commit bea2ff7

Please sign in to comment.