docs classSet semicolons missing

This commit is contained in:
Cheng Lou 2013-11-18 21:22:14 -05:00
parent 5d2f0b4e07
commit ce0eec97db
1 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ render: function() {
classString += ' message-read';
}
// 'message message-important message-read'
return <div className={classString}>Great, I'll be there.</div>
return <div className={classString}>Great, I'll be there.</div>;
}
```
@ -35,9 +35,9 @@ render: function() {
'message': true,
'message-important': this.props.isImportant,
'message-read': this.props.isRead
})
});
// same final string, but much cleaner
return <div className={classes}>Great, I'll be there.</div>
return <div className={classes}>Great, I'll be there.</div>;
}
```