Skip to content

Commit

Permalink
[guide] [react] Add missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
ndresx authored and ljharb committed Apr 22, 2017
1 parent 71932e1 commit 8eee1f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@
}
render() {
return <div onClick={this.onClickDiv.bind(this)} />
return <div onClick={this.onClickDiv.bind(this)} />;
}
}
Expand All @@ -493,7 +493,7 @@
}
render() {
return <div onClick={this.onClickDiv} />
return <div onClick={this.onClickDiv} />;
}
}
```
Expand Down Expand Up @@ -575,7 +575,7 @@
}
render() {
return <a href={this.props.url} data-id={this.props.id}>{this.props.text}</a>
return <a href={this.props.url} data-id={this.props.id}>{this.props.text}</a>;
}
}
Expand Down

0 comments on commit 8eee1f1

Please sign in to comment.