Skip to content

Commit

Permalink
Merge pull request facebook#17 from dozoisch/typo_proptypes
Browse files Browse the repository at this point in the history
Fixed typo on propTypes in chat example
  • Loading branch information
jingc committed Aug 4, 2014
2 parents 19a2497 + 77929f8 commit 040bf95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/flux-chat/js/components/MessageListItem.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var ReactPropTypes = React.PropTypes;

var MessageListItem = React.createClass({

props: {
propTypes: {
message: ReactPropTypes.object
},

Expand Down
2 changes: 1 addition & 1 deletion examples/flux-chat/js/components/ThreadListItem.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var ReactPropTypes = React.PropTypes;

var ThreadListItem = React.createClass({

props: {
propTypes: {
thread: ReactPropTypes.object,
currentThreadID: ReactPropTypes.string
},
Expand Down

0 comments on commit 040bf95

Please sign in to comment.