Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion aio/content/tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions aio/content/tutorial/toh-pt1.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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.
4 changes: 2 additions & 2 deletions aio/content/tutorial/toh-pt2.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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.
4 changes: 2 additions & 2 deletions aio/content/tutorial/toh-pt3.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ Here are the code files discussed in this page.



## The road you’ve travelled
## Summary

Here's what you achieved in this page:

Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions aio/content/tutorial/toh-pt4.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions aio/content/tutorial/toh-pt5.md
Original file line number Diff line number Diff line change
Expand Up @@ -1356,7 +1356,7 @@ Verify that you have the following structure:



## The road you’ve travelled
## Summary
Here's what you achieved in this page:

* You added the Angular router to navigate among different components.
Expand All @@ -1368,7 +1368,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.
Expand Down
2 changes: 1 addition & 1 deletion aio/content/tutorial/toh-pt6.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down