From c72d79879c649d710c84f5b026ebeabeb483a1c5 Mon Sep 17 00:00:00 2001 From: Julian Viereck Date: Mon, 16 Mar 2015 18:27:04 +0100 Subject: [PATCH] Fix small typo --- docs/05-reusable-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/05-reusable-components.md b/docs/05-reusable-components.md index 0178c5e8..b4159ac9 100644 --- a/docs/05-reusable-components.md +++ b/docs/05-reusable-components.md @@ -200,7 +200,7 @@ class HelloMessage extends React.Component { React.render(, mountNode); ``` -The API is similar to `React.createClass` with the exception or `getInitialState`. Instead of providing a separate `getInitialState` method, you set up your own `state` property in the constructor. +The API is similar to `React.createClass` with the exception of `getInitialState`. Instead of providing a separate `getInitialState` method, you set up your own `state` property in the constructor. Another difference is that `propTypes` and `defaultProps` are defined as properties on the constructor instead of in the class body.