Skip to content

Commit bb1628d

Browse files
author
mraxus
committed
Add missing semi-colon
1 parent 770ebfd commit bb1628d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/react-diff.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module.exports = React.createClass({
4141
var result = diff.map(function(part, index) {
4242
var spanStyle = {
4343
backgroundColor: part.added ? 'lightgreen' : part.removed ? 'salmon' : 'lightgrey'
44-
}
44+
};
4545
return <span key={index} style={spanStyle}>{part.value}</span>
4646
});
4747
return (

0 commit comments

Comments
 (0)