From 6136ec5e09ba38440b300a9a55753d17735a5935 Mon Sep 17 00:00:00 2001 From: Alan Thompson Date: Thu, 17 May 2018 17:18:12 -0400 Subject: [PATCH] Update WhenDoComponentsUpdate.md small typo --- docs/WhenDoComponentsUpdate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/WhenDoComponentsUpdate.md b/docs/WhenDoComponentsUpdate.md index 27e7067..c6f55c3 100644 --- a/docs/WhenDoComponentsUpdate.md +++ b/docs/WhenDoComponentsUpdate.md @@ -186,7 +186,7 @@ The `=` version is more accurate, more intuitive, but potentially more expensive ### Efficient Re-renders -Its only via rerenders that a UI will change. So re-rendering is pretty essential. +It's only via rerenders that a UI will change. So re-rendering is pretty essential. On the other hand, unnecessary re-rendering should be avoided. In the worst case, it could lead to performance problems. By unnecessary rendering, I mean rerenders which result in unchanged HTML. That's a whole lot of work for no reason.