diff --git a/aio/content/guide/dependency-injection-in-action.md b/aio/content/guide/dependency-injection-in-action.md index 5768883ae2..efe258adfc 100644 --- a/aio/content/guide/dependency-injection-in-action.md +++ b/aio/content/guide/dependency-injection-in-action.md @@ -171,7 +171,7 @@ Once all the dependencies are in place, the `AppComponent` displays the user inf
- Logged In User + Logged In User
@@ -337,7 +337,7 @@ Find this example in live co and confirm that the three `HeroBioComponent` instances have their own cached hero data.
- Bios + Bios
@@ -403,7 +403,7 @@ placing it in the `` slot of the `HeroBioComponent` template: It looks like this, with the hero's telephone number from `HeroContactComponent` projected above the hero description:
- bio and contact + bio and contact
@@ -440,7 +440,7 @@ Thanks to `@Optional()`, Angular sets the `loggerService` to null and the rest o Here's the `HeroBiosAndContactsComponent` in action.
- Bios with contact into + Bios with contact into
@@ -450,7 +450,7 @@ until it finds the logger at the `AppComponent` level. The logger logic kicks in with the gratuitous "!!!", indicating that the logger was found.
- Without @Host + Without @Host
@@ -495,7 +495,7 @@ first without a value (yielding the default color) and then with an assigned col The following image shows the effect of mousing over the `` tag.
- Highlighted bios + Highlighted bios
{@a providers} @@ -573,7 +573,7 @@ The `HeroOfTheMonthComponent` example demonstrates many of the alternatives and It's visually simple: a few properties and the logs produced by a logger.
- Hero of the month + Hero of the month
@@ -728,7 +728,7 @@ Now put it to use in a simplified version of the `HeroOfTheMonthComponent`. The `HeroOfTheMonthComponent` constructor's `logger` parameter is typed as `MinimalLogger` so only the `logs` and `logInfo` members are visible in a TypeScript-aware editor:
- MinimalLogger restricted API + MinimalLogger restricted API
@@ -743,7 +743,7 @@ Behind the scenes, Angular actually sets the `logger` parameter to the full serv The following image, which displays the logging date, confirms the point:
- DateLoggerService entry + DateLoggerService entry
@@ -941,7 +941,7 @@ to display a *sorted* list of heroes.
- Sorted Heroes + Sorted Heroes
@@ -1154,7 +1154,7 @@ the same way you've done it before: Here's *Alex* and family in action:
- Alex in action + Alex in action
@@ -1215,7 +1215,7 @@ Here's *Alice*, *Barry* and family in action:
- Alice in action + Alice in action
diff --git a/aio/content/guide/ngmodule.md b/aio/content/guide/ngmodule.md index 2a140d2c41..a3607d662f 100644 --- a/aio/content/guide/ngmodule.md +++ b/aio/content/guide/ngmodule.md @@ -185,7 +185,7 @@ compiles the application in the browser and then launches the app. The samples in this page demonstrate the dynamic bootstrapping approach. -Try the live example. +Try the live example. ### Static bootstrapping with the ahead-of-time (AOT) compiler @@ -682,7 +682,7 @@ The app file structure looks like this: Try the example: - + {@a resolve-conflicts} @@ -896,7 +896,7 @@ There's a lot to like in the revised `AppModule`. Try this `ContactModule` version of the sample. -Try the live example. +Try the live example. {@a lazy-load} @@ -915,7 +915,7 @@ Their specifics aren't important to the story and this page doesn't discuss ever Examine and download the complete source for this version from -the live example. +the live example. @@ -1194,7 +1194,7 @@ It imports the `HeroRoutingModule` from `hero-routing.module.ts` just as `Contac The `CrisisModule` is much the same. -Try the live example. +Try the live example. {@a shared-module} @@ -1549,7 +1549,7 @@ Now `parentModule` exists and the constructor throws the error. ### Conclusion You made it! You can examine and download the complete source for this final version from the live example. - + ### Frequently asked questions