Skip to content

Commit fff4ba3

Browse files
chaficnajjargaearon
authored andcommitted
s/each are/each is (#713)
"Each" here is singular so the verb that follows it must also be singular (i.e. "is" not "are"). See: - https://english.stackexchange.com/questions/24846/how-does-each-change-are-to-is - https://english.stackexchange.com/questions/12387/each-with-plural-or-singular-verb
1 parent 7072a01 commit fff4ba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/integrating-with-other-libraries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ React can be used in any web application. It can be embedded in other applicatio
1010

1111
React is unaware of changes made to the DOM outside of React. It determines updates based on its own internal representation, and if the same DOM nodes are manipulated by another library, React gets confused and has no way to recover.
1212

13-
This does not mean it is impossible or even necessarily difficult to combine React with other ways of affecting the DOM, you just have to be mindful of what each are doing.
13+
This does not mean it is impossible or even necessarily difficult to combine React with other ways of affecting the DOM, you just have to be mindful of what each is doing.
1414

1515
The easiest way to avoid conflicts is to prevent the React component from updating. You can do this by rendering elements that React has no reason to update, like an empty `<div />`.
1616

0 commit comments

Comments
 (0)