diff --git a/examples/classes/index.jsx b/examples/classes/index.jsx index cef2631..4436688 100644 --- a/examples/classes/index.jsx +++ b/examples/classes/index.jsx @@ -12,7 +12,7 @@ export default React.createClass({

Class syntax has been added to ES6. The underlying inheritance model is still prototypal but the class syntax can make it easier to reason about relationships. - To create a class just use the Class keyword. Classes can be created with class expressions or class declarations. + To create a class just use the class keyword. Classes can be created with class expressions or class declarations. Unlike function declarations, class declarations are not hoisted.