From 4477e69d52a5b3a3ca657bb796716ad789f96093 Mon Sep 17 00:00:00 2001 From: Thomas Shaddox Date: Fri, 11 Jul 2014 02:52:17 -0700 Subject: [PATCH] Add possessive to fix grammar --- docs/docs/ref-08-reconciliation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/ref-08-reconciliation.md b/docs/docs/ref-08-reconciliation.md index 0678d42f65..fc33ed68ba 100644 --- a/docs/docs/ref-08-reconciliation.md +++ b/docs/docs/ref-08-reconciliation.md @@ -6,7 +6,7 @@ permalink: reconciliation.html prev: special-non-dom-attributes.html --- -React key design decision is to make the API seem like it re-renders the whole app on every update. This makes writing applications a lot easier but is also an incredible challenge to make it tractable. This article explains how with powerful heuristics we managed to turn a O(n3) problem into a O(n) one. +React's key design decision is to make the API seem like it re-renders the whole app on every update. This makes writing applications a lot easier but is also an incredible challenge to make it tractable. This article explains how with powerful heuristics we managed to turn a O(n3) problem into a O(n) one. ## Motivation