From 16042aaee3abd0c59546a8874f3f4d1dce62b878 Mon Sep 17 00:00:00 2001 From: Levi Notik Date: Mon, 17 Feb 2020 01:27:02 -0500 Subject: [PATCH] Minor grammatical fix Change > node whose contents has changed to > node whose contents have changed --- content/docs/rendering-elements.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/rendering-elements.md b/content/docs/rendering-elements.md index 34bb62b7c57..06acd1881db 100644 --- a/content/docs/rendering-elements.md +++ b/content/docs/rendering-elements.md @@ -70,6 +70,6 @@ You can verify by inspecting the [last example](codepen://rendering-elements/upd ![DOM inspector showing granular updates](../images/docs/granular-dom-updates.gif) -Even though we create an element describing the whole UI tree on every tick, only the text node whose contents has changed gets updated by React DOM. +Even though we create an element describing the whole UI tree on every tick, only the text node whose contents have changed gets updated by React DOM. In our experience, thinking about how the UI should look at any given moment rather than how to change it over time eliminates a whole class of bugs.