This repository was archived by the owner on Dec 4, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
public/docs/ts/latest/guide Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -286,13 +286,13 @@ figure
286
286
We saw three forms of data binding in our [example](#template) template:
287
287
+ makeExample('architecture/ts/app/hero-list.component.1.html' , 'binding' , 'app/hero-list.component.html (excerpt)' )( format ="." )
288
288
:marked
289
- * The {{hero.name}} "[ interpolation](displaying-data.html#interpolation)"
289
+ * The ` {{hero.name}}` [* interpolation* ](displaying-data.html#interpolation)
290
290
displays the component's `hero.name` property value within the `<div>` tags.
291
291
292
- * The `[hero]` [property binding](template-syntax.html#property-binding) passes the `selectedHero` from
292
+ * The `[hero]` [* property binding* ](template-syntax.html#property-binding) passes the `selectedHero` from
293
293
the parent `HeroListComponent` to the `hero` property of the child `HeroDetailComponent`.
294
294
295
- * The `(click)` [event binding](user-input.html#click) calls the Component's `selectHero` method when the user clicks
295
+ * The `(click)` [* event binding* ](user-input.html#click) calls the Component's `selectHero` method when the user clicks
296
296
on a hero's name
297
297
298
298
**Two-way data binding** is an important fourth form
You can’t perform that action at this time.
0 commit comments