改正错误

#82
This commit is contained in:
Zhicheng Wang 2016-09-27 10:07:50 +08:00
parent 77ba99c8c1
commit 843351d8b7
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ p
added that class to the `declarations` NgModule metadata so that Angular
will recognize our directive when it encounters `myHighlight` in the template.
我们添加了一个`import`语句来获得'Highlight'指令类,并把这个类添加到`AppComponent`组件的`directives`数组中。
我们添加了一个`import`语句来获得'Highlight'指令类,并把这个类添加到`AppComponent`组件的`declarations`数组中。
这样当Angular在模板中遇到`myHighlight`时,就能认出这是指令了。
+makeExample('attribute-directives/ts/app/app.module.ts',null,'app/app.module.ts')