From 9b70e82246e791f3045e9434d9282a555d5a97b0 Mon Sep 17 00:00:00 2001 From: Maxim Abramchuk Date: Sat, 21 Mar 2015 23:11:45 +0300 Subject: [PATCH] Add missing semicolon --- examples/quadratic/example.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/quadratic/example.js b/examples/quadratic/example.js index 655d813aeb..1be6a8a1cd 100644 --- a/examples/quadratic/example.js +++ b/examples/quadratic/example.js @@ -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 (