From 2ee67655f3476e5485e4500760c1ce46356ba874 Mon Sep 17 00:00:00 2001 From: Adhithya Rajagopalan Date: Wed, 12 Apr 2017 08:07:07 +0530 Subject: [PATCH] docs(toh-3): corrected incorrect displayed file name in tutorial (#3457) --- public/docs/ts/latest/tutorial/toh-pt3.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/tutorial/toh-pt3.jade b/public/docs/ts/latest/tutorial/toh-pt3.jade index 32ca55869b..a1ad3b9680 100644 --- a/public/docs/ts/latest/tutorial/toh-pt3.jade +++ b/public/docs/ts/latest/tutorial/toh-pt3.jade @@ -177,7 +177,7 @@ a#add-hero-detail Coordinate the master `AppComponent` with the `HeroDetailComponent` by binding the `selectedHero` property of the `AppComponent` to the `hero` property of the `HeroDetailComponent`. -+makeExample('toh-3/ts/app/app.component.1.html', 'hero-detail-binding', 'app.component.html (excerpt)')(format='.') ++makeExample('toh-3/ts/app/app.component.1.html', 'hero-detail-binding', 'app.component.ts (excerpt)')(format='.') :marked Now every time the `selectedHero` changes, the `HeroDetailComponent` gets a new hero to display.