Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/docs/11-advanced-performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ So, how should we implement `shouldComponentUpdate`? Say that you have a compone

```javascript
React.createClass({
propsTypes: {
propTypes: {
value: React.PropTypes.string.isRequired
},

Expand All @@ -73,7 +73,7 @@ But what if your components' props or state are mutable data structures?. Say th

```javascript
React.createClass({
propsTypes: {
propTypes: {
value: React.PropTypes.object.isRequired
},

Expand Down