Remove spurious braces.

This commit is contained in:
Tony Garnock-Jones 2016-03-19 13:01:23 -04:00
parent 3b5a07f954
commit e7de06c2d2
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ var forEachChild = (function () {
function buildActor(constructorES5, block) {
return 'Syndicate.Actor.spawnActor(new '+constructorES5+', '+
'function() {' + block.asES5 + '});';
'function() ' + block.asES5 + ');';
}
function buildFacet(facetBlock, transitionBlock) {