From 4b9d18b532e808de6ae57032bfcd04513b90ee4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Tue, 24 Feb 2015 12:46:15 -0800 Subject: [PATCH] Fix typo (cherry picked from commit 4d90b9bdf3fc4ccfd2ccbaf9a590b16f06746b55) --- _posts/2015-02-24-streamlining-react-elements.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2015-02-24-streamlining-react-elements.md b/_posts/2015-02-24-streamlining-react-elements.md index 98d9206b..26220a8d 100644 --- a/_posts/2015-02-24-streamlining-react-elements.md +++ b/_posts/2015-02-24-streamlining-react-elements.md @@ -23,7 +23,7 @@ The problem is that we don’t have a convenient way to tell when you’re done ### Problem: Mutating Props You Don’t Own -If you mutate something, you destroy the original value. Therefore, there is nothing to diff against. Imaging something like this: +If you mutate something, you destroy the original value. Therefore, there is nothing to diff against. Imagine something like this: ```js var element = this.props.child;