Skip to content

Commit

Permalink
robot_generators.js: remove unnecessary semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Harvey <[email protected]>
  • Loading branch information
tharvey committed Oct 14, 2016
1 parent 0faf681 commit 1b59def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocklybot/src/main/assets/robot_generators.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Blockly.JavaScript['variables_while'] = function(block) {
*/
Blockly.JavaScript['start'] = function(block) {
var value = Blockly.JavaScript.statementToCode(block, 'FUNC')
return 'function start() {\n' + value + '};\n';
return 'function start() {\n' + value + '}\n';
};

Blockly.JavaScript['speech_speak'] = function(block) {
Expand Down

0 comments on commit 1b59def

Please sign in to comment.