Skip to content

Commit

Permalink
Fixed bug in the 'angular' template language implementation.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-darling committed May 22, 2018
1 parent 08371a8 commit f5aced2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class AngularTemplateLanguage implements ITemplateLanguage
expectCloseBrace = false;

expressions.push(template.substring(sequenceStartIndex, i + 1));
result += `{{${expressions.length - 1}}`;
result += `{{${expressions.length - 1}}}`;
sequenceStartIndex = i + 1;
}
else
Expand Down

0 comments on commit f5aced2

Please sign in to comment.