From dbb62039e3a33f4ecdae98826607ec9ced8401b7 Mon Sep 17 00:00:00 2001 From: Benjamin Keen Date: Sat, 6 Dec 2014 15:49:22 -0800 Subject: [PATCH] Update 10.6-update.md Spelling fix. --- docs/10.6-update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/10.6-update.md b/docs/10.6-update.md index a29f1211..4c90d0e2 100644 --- a/docs/10.6-update.md +++ b/docs/10.6-update.md @@ -20,7 +20,7 @@ myData.x.y.z = 7; myData.a.b.push(9); ``` -you have no way of determining which data has changed since the previous copy is overriden. Instead, you need to create a new copy of `myData` and change only the parts of it that need to be changed. Then you can compare the old copy of `myData` with the new one in `shouldComponentUpdate()` using triple-equals: +you have no way of determining which data has changed since the previous copy is overridden. Instead, you need to create a new copy of `myData` and change only the parts of it that need to be changed. Then you can compare the old copy of `myData` with the new one in `shouldComponentUpdate()` using triple-equals: ```js var newData = deepCopy(myData);