From 82c93338fb616e5d1892a314f308e534814fc1d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 17 Jul 2013 13:23:18 -0700 Subject: [PATCH] Fix typo in blogpost I fixed this in the changelog, but missed this one. --- _posts/2013-07-17-react-v0-4-0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-07-17-react-v0-4-0.md b/_posts/2013-07-17-react-v0-4-0.md index 8f9e9013..87a34b7e 100644 --- a/_posts/2013-07-17-react-v0-4-0.md +++ b/_posts/2013-07-17-react-v0-4-0.md @@ -30,7 +30,7 @@ When you're ready, [go download it](/react/downloads.html)! * Support for comment nodes `
{/* this is a comment and won't be rendered */}
` * Children are now transformed directly into arguments instead of being wrapped in an array - E.g. `
` is transformed into `React.DOM.div(null, Component1(null), Component2(null))`. + E.g. `
` is transformed into `React.DOM.div(null, Component1(null), Component2(null))`. Previously this would be transformed into `React.DOM.div(null, [Component1(null), Component2(null)])`. If you were using React without JSX previously, your code should still work.