diff --git a/aio/content/tutorial/index.md b/aio/content/tutorial/index.md
index a3a37dd14b..b5f4f89c69 100644
--- a/aio/content/tutorial/index.md
+++ b/aio/content/tutorial/index.md
@@ -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
diff --git a/aio/content/tutorial/toh-pt1.md b/aio/content/tutorial/toh-pt1.md
index a43323c0e8..c6f54bf3f9 100644
--- a/aio/content/tutorial/toh-pt1.md
+++ b/aio/content/tutorial/toh-pt1.md
@@ -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.
diff --git a/aio/content/tutorial/toh-pt2.md b/aio/content/tutorial/toh-pt2.md
index 3464d461ec..fb476b2d8f 100644
--- a/aio/content/tutorial/toh-pt2.md
+++ b/aio/content/tutorial/toh-pt2.md
@@ -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 .
-## 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.
diff --git a/aio/content/tutorial/toh-pt3.md b/aio/content/tutorial/toh-pt3.md
index de278a8508..0efc4a440e 100644
--- a/aio/content/tutorial/toh-pt3.md
+++ b/aio/content/tutorial/toh-pt3.md
@@ -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:
@@ -457,7 +457,7 @@ Your app should look like this .
-## 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.
diff --git a/aio/content/tutorial/toh-pt4.md b/aio/content/tutorial/toh-pt4.md
index 9ab763c235..1dda98e21d 100644
--- a/aio/content/tutorial/toh-pt4.md
+++ b/aio/content/tutorial/toh-pt4.md
@@ -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 .
-## 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.
diff --git a/aio/content/tutorial/toh-pt5.md b/aio/content/tutorial/toh-pt5.md
index 024f6e85b9..40af517b4f 100644
--- a/aio/content/tutorial/toh-pt5.md
+++ b/aio/content/tutorial/toh-pt5.md
@@ -1350,7 +1350,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.
@@ -1362,7 +1362,7 @@ Here's what you achieved in this page:
Your app should look like this .
-### 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.
diff --git a/aio/content/tutorial/toh-pt6.md b/aio/content/tutorial/toh-pt6.md
index bf0c35f938..72852a15aa 100644
--- a/aio/content/tutorial/toh-pt6.md
+++ b/aio/content/tutorial/toh-pt6.md
@@ -518,7 +518,7 @@ Verify that you have the following structure:
-## 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.