Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit eb48a71

Browse files
rexebinwardbell
authored andcommitted
docs(architecture): fixed missing `` mark.
closes #1514
1 parent 4b4c8dc commit eb48a71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

public/docs/ts/latest/guide/architecture.jade

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,13 @@ figure
286286
We saw three forms of data binding in our [example](#template) template:
287287
+makeExample('architecture/ts/app/hero-list.component.1.html', 'binding', 'app/hero-list.component.html (excerpt)')(format=".")
288288
:marked
289-
* The {{hero.name}} "[interpolation](displaying-data.html#interpolation)"
289+
* The `{{hero.name}}` [*interpolation*](displaying-data.html#interpolation)
290290
displays the component's `hero.name` property value within the `<div>` tags.
291291

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
293293
the parent `HeroListComponent` to the `hero` property of the child `HeroDetailComponent`.
294294

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
296296
on a hero's name
297297

298298
**Two-way data binding** is an important fourth form

0 commit comments

Comments
 (0)