diff --git a/public/docs/_examples/attribute-directives/ts/app/app.component.ts b/public/docs/_examples/attribute-directives/ts/app/app.component.ts index 65bb2b23e7..2cfed3b35f 100644 --- a/public/docs/_examples/attribute-directives/ts/app/app.component.ts +++ b/public/docs/_examples/attribute-directives/ts/app/app.component.ts @@ -1,6 +1,6 @@ // #docregion import {Component} from 'angular2/core'; -import {HighlightDirective} from './highlight.directive' +import {HighlightDirective} from './highlight.directive'; @Component({ selector: 'my-app', diff --git a/public/docs/_examples/attribute-directives/ts/app/boot.ts b/public/docs/_examples/attribute-directives/ts/app/boot.ts index 7a69edae1b..3fe89a9b15 100644 --- a/public/docs/_examples/attribute-directives/ts/app/boot.ts +++ b/public/docs/_examples/attribute-directives/ts/app/boot.ts @@ -1,5 +1,5 @@ // #docregion -import {bootstrap} from 'angular2/platform/browser' +import {bootstrap} from 'angular2/platform/browser'; import {AppComponent} from './app.component'; bootstrap(AppComponent);