From 430feda3e9cbefbbf04c325759c377a4d6c6add2 Mon Sep 17 00:00:00 2001 From: petehunt Date: Wed, 5 Jun 2013 08:46:51 -0700 Subject: [PATCH] Rename and fix typo --- _posts/{2013-06-04-why-react.md => 2013-06-05-why-react.md} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename _posts/{2013-06-04-why-react.md => 2013-06-05-why-react.md} (98%) diff --git a/_posts/2013-06-04-why-react.md b/_posts/2013-06-05-why-react.md similarity index 98% rename from _posts/2013-06-04-why-react.md rename to _posts/2013-06-05-why-react.md index f9883d8b..4795582c 100644 --- a/_posts/2013-06-04-why-react.md +++ b/_posts/2013-06-05-why-react.md @@ -53,9 +53,8 @@ efficiently as possible, we diff the return value from the previous call to `render` with the new one, and generate a minimal set of changes to be applied to the DOM. ->   > The data returned from `render` is neither a string nor a DOM node -- it's a -> a lightweight description of what the DOM should look like. +> lightweight description of what the DOM should look like. We call this process **reconciliation**. Check out [this jsFiddle](http://jsfiddle.net/fv6RD/3/) to see an example of