From 32630cd8cf65f53cd683ec962994b508644b4f66 Mon Sep 17 00:00:00 2001 From: Ben Alpert Date: Thu, 23 Oct 2014 00:45:33 -0700 Subject: [PATCH] Fix typo in 0.12 RC blog post --- docs/_posts/2014-10-16-react-v0.12-rc1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_posts/2014-10-16-react-v0.12-rc1.md b/docs/_posts/2014-10-16-react-v0.12-rc1.md index 9507689880..56031451eb 100644 --- a/docs/_posts/2014-10-16-react-v0.12-rc1.md +++ b/docs/_posts/2014-10-16-react-v0.12-rc1.md @@ -106,7 +106,7 @@ You do NOT need to change the way to define `key` and `ref`, only if you need to ## Breaking Change: Default Props Resolution -This is a subtle difference but `defaultProps` are now resolved at `ReactElement` creation time instead of when it's mounted. This is means that we can avoid allocating an extra object for the resolve props. +This is a subtle difference but `defaultProps` are now resolved at `ReactElement` creation time instead of when it's mounted. This is means that we can avoid allocating an extra object for the resolved props. You will primarily see this breaking if you're also using `transferPropsTo`.