From 77831806c617ad3a314218038145e146339c8608 Mon Sep 17 00:00:00 2001 From: Michael Mrowetz Date: Wed, 23 Dec 2015 08:05:12 +0900 Subject: [PATCH] docs(Attribute Directives): Fix missing semicolons in example code imports closes #601 --- .../docs/_examples/attribute-directives/ts/app/app.component.ts | 2 +- public/docs/_examples/attribute-directives/ts/app/boot.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);