summaryrefslogtreecommitdiff
path: root/tutorial/js
diff options
context:
space:
mode:
authorRoger Meier <roger@apache.org>2014-03-26 23:23:37 +0100
committerRoger Meier <roger@apache.org>2014-03-26 23:23:37 +0100
commit443ced0e3a68b3bf61c32466e0f75c5a41abbe47 (patch)
tree1a1f03aba192c08b944c4c4fc9aedea76e2ff5e7 /tutorial/js
parente8ca73f62f97fe1cf05425727a9831d14316e4d4 (diff)
downloadthrift-443ced0e3a68b3bf61c32466e0f75c5a41abbe47.tar.gz
js tutorial add missing semicolon
Diffstat (limited to 'tutorial/js')
-rwxr-xr-xtutorial/js/tutorial.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/js/tutorial.html b/tutorial/js/tutorial.html
index 112da702e..d7f3945f2 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();