Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

docs(cook/component-communication): AstronautComponent word typo fix #1067

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions public/docs/ts/latest/cookbook/component-communication.jade
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,8 @@ a(id="countdown-tests")
+makeExample('cb-component-communication/ts/app/missioncontrol.component.ts')

:marked
The `AstronoutComponent` also injects the service in its constructor.
Each `AstronoutComponent` is a child of the `MissionControlComponent` and therefore receives its parent's service instance:
The `AstronautComponent` also injects the service in its constructor.
Each `AstronautComponent` is a child of the `MissionControlComponent` and therefore receives its parent's service instance:

+makeExample('cb-component-communication/ts/app/astronaut.component.ts')

Expand All @@ -315,7 +315,7 @@ a(id="countdown-tests")
it controls the lifetime of the `MissionService`.
:marked
The *History* log demonstrates that messages travel in both directions between
the parent `MissionControlComponent` and the `AstronoutComponent` children,
the parent `MissionControlComponent` and the `AstronautComponent` children,
facilitated by the service:

figure.image-display
Expand All @@ -324,7 +324,7 @@ figure.image-display
:marked
### Test it

Tests click buttons of both the parent `MissionControlComponent` and the `AstronoutComponent` children
Tests click buttons of both the parent `MissionControlComponent` and the `AstronautComponent` children
and verify that the *History* meets expectations:

+makeExample('cb-component-communication/e2e-spec.js', 'bidirectional-service')
Expand Down