From eb48a71351b88115e73540aa829e3a979e6f235e Mon Sep 17 00:00:00 2001 From: "Zhimin YE(Rex)" Date: Wed, 25 May 2016 16:14:29 +0100 Subject: [PATCH] docs(architecture): fixed missing `` mark. closes #1514 --- public/docs/ts/latest/guide/architecture.jade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/docs/ts/latest/guide/architecture.jade b/public/docs/ts/latest/guide/architecture.jade index 11031aff02..e7ee02863b 100644 --- a/public/docs/ts/latest/guide/architecture.jade +++ b/public/docs/ts/latest/guide/architecture.jade @@ -286,13 +286,13 @@ figure We saw three forms of data binding in our [example](#template) template: +makeExample('architecture/ts/app/hero-list.component.1.html', 'binding', 'app/hero-list.component.html (excerpt)')(format=".") :marked - * The {{hero.name}} "[interpolation](displaying-data.html#interpolation)" + * The `{{hero.name}}` [*interpolation*](displaying-data.html#interpolation) displays the component's `hero.name` property value within the `
` tags. - * The `[hero]` [property binding](template-syntax.html#property-binding) passes the `selectedHero` from + * The `[hero]` [*property binding*](template-syntax.html#property-binding) passes the `selectedHero` from the parent `HeroListComponent` to the `hero` property of the child `HeroDetailComponent`. - * The `(click)` [event binding](user-input.html#click) calls the Component's `selectHero` method when the user clicks + * The `(click)` [*event binding*](user-input.html#click) calls the Component's `selectHero` method when the user clicks on a hero's name **Two-way data binding** is an important fourth form