chore(toh-5): refresh cache file (#2208)

No other changes.
This commit is contained in:
Patrice Chalin 2016-08-26 15:48:47 -07:00 committed by Kathy Walrath
parent 101d2ef091
commit 3baea41801
1 changed files with 5 additions and 10 deletions

View File

@ -227,7 +227,7 @@ block router-config-intro
We'll export a `routing` constant initialized using the `RouterModule.forRoot` method applied to our !{_array} of routes. We'll export a `routing` constant initialized using the `RouterModule.forRoot` method applied to our !{_array} of routes.
This method returns a **configured router module** that we'll add to our root NgModule, `AppModule`. This method returns a **configured router module** that we'll add to our root NgModule, `AppModule`.
+makeExcerpt('app/app.routing.ts (excerpt)', 'routing') +makeExcerpt('app/app.routing.1.ts (excerpt)', 'routing-export')
.l-sub-section .l-sub-section
:marked :marked
@ -479,15 +479,10 @@ code-example(format='').
The colon (:) in the path indicates that `:id` is a placeholder to be filled with a specific hero `id` The colon (:) in the path indicates that `:id` is a placeholder to be filled with a specific hero `id`
when navigating to the `HeroDetailComponent`. when navigating to the `HeroDetailComponent`.
.l-sub-section +ifDocsFor('dart')
:marked .l-sub-section
Remember to import the hero detail component before creating this route. :marked
Remember to import the hero detail component before creating this route.
+ifDocsFor('ts|js')
:marked
Add the `HeroDetailComponent` to our root NgModule's `declarations`.
+makeExcerpt('app/app.module.ts', 'hero-detail')
:marked :marked
We're finished with the application routes. We're finished with the application routes.