Add possessive to fix grammar

This commit is contained in:
Thomas Shaddox
2014-07-11 02:52:17 -07:00
parent 774f5a022e
commit 4477e69d52
+1 -1
View File
@@ -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(n<sup>3</sup>) 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(n<sup>3</sup>) problem into a O(n) one.
## Motivation