From 66e640a9483367aaad75c031e2d98d46270c43dd Mon Sep 17 00:00:00 2001 From: Zhicheng Wang Date: Thu, 1 Jun 2017 21:27:33 +0800 Subject: [PATCH] fix: typo (#232) --- public/docs/ts/latest/guide/template-syntax.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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=".")