diff --git a/public/docs/ts/latest/guide/template-syntax.jade b/public/docs/ts/latest/guide/template-syntax.jade index c938146276..f65872602b 100644 --- a/public/docs/ts/latest/guide/template-syntax.jade +++ b/public/docs/ts/latest/guide/template-syntax.jade @@ -296,7 +296,7 @@ a#expression-context `isUnchanged` in quotes refer to properties of the `AppComponent`. 典型的*表达式上下文*就是这个**组件实例**,它是各种绑定值的来源。 - 在下面的代码片段中,双花括号中的`title`和引号中的`isUnchanged`所引用的都是`AppComponent`肿的属性。 + 在下面的代码片段中,双花括号中的`title`和引号中的`isUnchanged`所引用的都是`AppComponent`中的属性。 +makeExample('template-syntax/ts/src/app/app.component.html', 'context-component-expression')(format=".")