From fff4ba35a8e4f90823858728f67d3a2b6ef399f0 Mon Sep 17 00:00:00 2001 From: Chafic Najjar Date: Mon, 26 Mar 2018 21:34:12 +0300 Subject: [PATCH] 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 --- content/docs/integrating-with-other-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/integrating-with-other-libraries.md b/content/docs/integrating-with-other-libraries.md index 63cf9cc2..50bc87c7 100644 --- a/content/docs/integrating-with-other-libraries.md +++ b/content/docs/integrating-with-other-libraries.md @@ -10,7 +10,7 @@ React can be used in any web application. It can be embedded in other applicatio 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. -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. +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. 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 `
`.