Append semicolon after expressions
Some lines need the semicolon, some don't.
Start file
var foo var bar = myCoolStuff() callRemote() foo = callTheWorld()
End file
var foo; var bar = myCoolStuff(); callRemote(); foo = callTheWorld();
View Diff
1c1 < var foo --- > var foo; 3c3 < var bar = myCoolStuff() --- > var bar = myCoolStuff(); 5c5 < callRemote() --- > callRemote(); 7c7 < foo = callTheWorld() --- > foo = callTheWorld();
Solutions by @retired10072015:
Unlock 3 remaining solutions by signing in and submitting your own entry