fix(typos): replace word "ever" with "every" (#6039)

This commit is contained in:
vicsantizo
2023-05-16 12:01:59 -06:00
committed by GitHub
parent fd8ba03f4d
commit bea2ff778d

View File

@@ -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*/}