docs(aio): edit summary and next step headers (#16962)

This commit is contained in:
Kapunahele Wong
2017-09-27 16:45:47 -04:00
committed by Victor Berchet
parent 48c6ece2be
commit 8d8995f1ab
7 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ Here's the app in action:
## Up next
## Next step
You'll build the Tour of Heroes app, step by step.
Each step is motivated with a requirement that you've likely
+2 -2
View File
@@ -263,7 +263,7 @@ You can edit the hero's name and see the changes reflected immediately in the `<
## The road you've travelled
## Summary
Take stock of what you've built.
@@ -286,7 +286,7 @@ Here's the complete `app.component.ts` as it stands now:
## The road ahead
## Next step
In the [next tutorial page](tutorial/toh-pt2 "Master/Detail"), you'll build on the Tour of Heroes app to display a list of heroes.
You'll also allow the user to select heroes and display their details.
You'll learn more about how to retrieve lists and bind them to the template.
+2 -2
View File
@@ -450,7 +450,7 @@ Here's the complete `app.component.ts` as of now:
## The road you've travelled
## Summary
Here's what you achieved in this page:
@@ -460,7 +460,7 @@ Here's what you achieved in this page:
Your app should look like this <live-example></live-example>.
## The road ahead
## Next step
You've expanded the Tour of Heroes app, but it's far from complete.
An app shouldn't be one monolithic component.
In the [next page](tutorial/toh-pt3 "Multiple Components"), you'll split the app into subcomponents and make them work together.
+2 -2
View File
@@ -443,7 +443,7 @@ Here are the code files discussed in this page.
## The road youve travelled
## Summary
Here's what you achieved in this page:
@@ -457,7 +457,7 @@ Your app should look like this <live-example></live-example>.
## The road ahead
## Next step
The Tour of Heroes app is more reusable with shared components,
but its (mock) data is still hard coded within the `AppComponent`.
That's not sustainable.
+2 -2
View File
@@ -593,7 +593,7 @@ Here are the code files discussed in this page.
## The road you've travelled
## Summary
Here's what you achieved in this page:
* You created a service class that can be shared by many components.
@@ -604,7 +604,7 @@ Here's what you achieved in this page:
Your app should look like this <live-example></live-example>.
## The road ahead
## Next step
The Tour of Heroes has become more reusable using shared components and services.
The next goal is to create a dashboard, add menu links that route between the views, and format data in a template.
As the app evolves, you'll discover how to design it to make it easier to grow and maintain.
+2 -2
View File
@@ -1350,7 +1350,7 @@ Verify that you have the following structure:
## The road youve travelled
## Summary
Here's what you achieved in this page:
* You added the Angular router to navigate among different components.
@@ -1362,7 +1362,7 @@ Here's what you achieved in this page:
Your app should look like this <live-example></live-example>.
### The road ahead
### Next step
You have much of the foundation you need to build an app.
You're still missing a key piece: remote data access.
+1 -1
View File
@@ -518,7 +518,7 @@ Verify that you have the following structure:
</div>
</div>
## Home Stretch
## Summary
You're at the end of your journey, and you've accomplished a lot.
* You added the necessary dependencies to use HTTP in the app.