Repository: thrift
Updated Branches:
  refs/heads/master e8ca73f62 -> 443ced0e3


js tutorial add missing semicolon


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/443ced0e
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/443ced0e
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/443ced0e

Branch: refs/heads/master
Commit: 443ced0e3a68b3bf61c32466e0f75c5a41abbe47
Parents: e8ca73f
Author: Roger Meier <[email protected]>
Authored: Wed Mar 26 23:23:37 2014 +0100
Committer: Roger Meier <[email protected]>
Committed: Wed Mar 26 23:23:37 2014 +0100

----------------------------------------------------------------------
 tutorial/js/tutorial.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/443ced0e/tutorial/js/tutorial.html
----------------------------------------------------------------------
diff --git a/tutorial/js/tutorial.html b/tutorial/js/tutorial.html
index 112da70..d7f3945 100755
--- a/tutorial/js/tutorial.html
+++ b/tutorial/js/tutorial.html
@@ -49,7 +49,7 @@
     var protocol  = new Thrift.Protocol(transport);
     var client    = new CalculatorClient(protocol);
 
-    var work = new Work()
+    var work = new Work();
     work.num1 = $("#num1").val();
     work.num2 = $("#num2").val();
     work.op = $("#op").val();

Reply via email to