docs(architecture): fixed missing `` mark.

closes #1514
This commit is contained in:
Zhimin YE(Rex) 2016-05-25 16:14:29 +01:00 committed by Ward Bell
parent 4b4c8dc0fd
commit eb48a71351
1 changed files with 3 additions and 3 deletions

View File

@ -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 `<div>` 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