docs(Attribute Directives): Fix missing semicolons in example code imports
closes #601
This commit is contained in:
parent
2474117ce0
commit
77831806c6
|
@ -1,6 +1,6 @@
|
|||
// #docregion
|
||||
import {Component} from 'angular2/core';
|
||||
import {HighlightDirective} from './highlight.directive'
|
||||
import {HighlightDirective} from './highlight.directive';
|
||||
|
||||
@Component({
|
||||
selector: 'my-app',
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
import {bootstrap} from 'angular2/platform/browser'
|
||||
import {bootstrap} from 'angular2/platform/browser';
|
||||
import {AppComponent} from './app.component';
|
||||
|
||||
bootstrap(AppComponent);
|
||||
|
|
Loading…
Reference in New Issue