From 7eb5d8ce402a6f8291186d8ab6dbad3367d2f86f Mon Sep 17 00:00:00 2001 From: Anna J McDougall Date: Wed, 22 Jul 2020 20:04:14 +0200 Subject: [PATCH] Fix minor grammatical error (missing comma) (#3133) --- content/tutorial/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/tutorial.md b/content/tutorial/tutorial.md index 59643e9f8..f3cc86048 100644 --- a/content/tutorial/tutorial.md +++ b/content/tutorial/tutorial.md @@ -560,7 +560,7 @@ Detecting changes in immutable objects is considerably easier. If the immutable #### Determining When to Re-Render in React {#determining-when-to-re-render-in-react} -The main benefit of immutability is that it helps you build _pure components_ in React. Immutable data can easily determine if changes have been made which helps to determine when a component requires re-rendering. +The main benefit of immutability is that it helps you build _pure components_ in React. Immutable data can easily determine if changes have been made, which helps to determine when a component requires re-rendering. You can learn more about `shouldComponentUpdate()` and how you can build *pure components* by reading [Optimizing Performance](/docs/optimizing-performance.html#examples).