From 5b16016e0a41e4fdd39d73e53ffdf7bf835a23aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Thu, 29 Jan 2015 16:13:35 -0800 Subject: [PATCH] Fix type in 0.13 blog post Pull in #2971 to the markdown --- docs/_posts/2015-01-27-react-v0.13.0-beta-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_posts/2015-01-27-react-v0.13.0-beta-1.md b/docs/_posts/2015-01-27-react-v0.13.0-beta-1.md index 01ad9c1d30..fafb5cfbec 100644 --- a/docs/_posts/2015-01-27-react-v0.13.0-beta-1.md +++ b/docs/_posts/2015-01-27-react-v0.13.0-beta-1.md @@ -33,7 +33,7 @@ class HelloMessage extends React.Component { React.render(, mountNode); ``` -The API is mostly what you would expect, which the exception for `getInitialState`. We figured that the idiomatic way to specify class state is to just use a simple instance property. Likewise `getDefaultProps` and `propTypes` are really just properties on the constructor. +The API is mostly what you would expect, with the exception for `getInitialState`. We figured that the idiomatic way to specify class state is to just use a simple instance property. Likewise `getDefaultProps` and `propTypes` are really just properties on the constructor. ```javascript export class Counter extends React.Component {