From 159b196baf8261a70d9c453d6f232a24d1ea7ce9 Mon Sep 17 00:00:00 2001 From: John Papa Date: Sun, 18 Sep 2016 12:34:32 -0400 Subject: [PATCH] docs(toh): fix spelling of ActivateRoute to ActivatedRoute (#2400) * fixed spelling of ActivateRoute to ActivatedRoute * dont do cache --- public/docs/ts/latest/tutorial/toh-pt5.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/tutorial/toh-pt5.jade b/public/docs/ts/latest/tutorial/toh-pt5.jade index 2bab094724..1ea7702e1d 100644 --- a/public/docs/ts/latest/tutorial/toh-pt5.jade +++ b/public/docs/ts/latest/tutorial/toh-pt5.jade @@ -536,7 +536,7 @@ block route-params block ngOnInit :marked Inside the `ngOnInit` lifecycle hook, we use the `params` observable to - extract the `id` parameter value from the `ActivateRoute` service + extract the `id` parameter value from the `ActivatedRoute` service and use the `HeroService` to fetch the hero with that `id`. +makeExcerpt('app/hero-detail.component.ts', 'ngOnInit')