Merge pull request #3475 from MaximAbramchuck/patch-1

Add missing semicolon
This commit is contained in:
Ben Alpert 2015-03-21 13:43:22 -07:00
commit 5dee15273f
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ var QuadraticCalculator = React.createClass({
render: function() {
var a = this.state.a;
var b = this.state.b;
var c = this.state.c
var c = this.state.c;
var x1 = (-b + Math.sqrt(Math.pow(b, 2) - 4 * a * c)) / (2 * a);
var x2 = (-b - Math.sqrt(Math.pow(b, 2) - 4 * a * c)) / (2 * a);
return (