From f0206cc957e25ff9494f0be26c09a0348d464c84 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Wed, 14 Dec 2016 08:46:16 -0800 Subject: [PATCH] docs(ts/_cache): misc sync (#2971) * docs(toh-5): backport cache change to main jade file * docs(ts/_cache): misc sync --- public/docs/ts/_cache/glossary.jade | 2 +- public/docs/ts/_cache/tutorial/toh-pt6.jade | 7 +++---- public/docs/ts/latest/tutorial/toh-pt5.jade | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/public/docs/ts/_cache/glossary.jade b/public/docs/ts/_cache/glossary.jade index b9cff1b0d2..59a8b8230f 100644 --- a/public/docs/ts/_cache/glossary.jade +++ b/public/docs/ts/_cache/glossary.jade @@ -250,7 +250,7 @@ a#aot and returns a fully prepared instance of "A". Angular provides and relies upon its own sophisticated - [dependency injection](dependency-injection.html) system + [dependency injection](!{docsLatest}/guide/dependency-injection.html) system to assemble and run applications by "injecting" application parts into other application parts where and when needed. diff --git a/public/docs/ts/_cache/tutorial/toh-pt6.jade b/public/docs/ts/_cache/tutorial/toh-pt6.jade index 46baa9c0cc..188d404222 100644 --- a/public/docs/ts/_cache/tutorial/toh-pt6.jade +++ b/public/docs/ts/_cache/tutorial/toh-pt6.jade @@ -91,10 +91,9 @@ block http-providers block backend :marked - We're importing the `InMemoryWebApiModule` and adding it to the module `imports`. - The `InMemoryWebApiModule` replaces the default `Http` client backend — - the supporting service that talks to the remote server — - with an _in-memory web API alternative service_. + Rather than require a real API server, this example simulates communication with the remote server by adding the + InMemoryWebApiModule + to the module `imports`, effectively replacing the `Http` client's XHR backend service with an in-memory alternative. +makeExcerpt(_appModuleTsVsMainTs, 'in-mem-web-api', '') diff --git a/public/docs/ts/latest/tutorial/toh-pt5.jade b/public/docs/ts/latest/tutorial/toh-pt5.jade index 8615c381ef..a75f0587a0 100644 --- a/public/docs/ts/latest/tutorial/toh-pt5.jade +++ b/public/docs/ts/latest/tutorial/toh-pt5.jade @@ -775,7 +775,7 @@ block heroes-component-cleanup :marked ### Update the _HeroesComponent_ class. - The `HeroesComponent` navigates to the `HeroesDetailComponent` in response to a button click. + The `HeroesComponent` navigates to the `HeroDetailComponent` in response to a button click. The button's _click_ event is bound to a `gotoDetail` method that navigates _imperatively_ by telling the router where to go.