diff --git a/aio/content/guide/attribute-directives.md b/aio/content/guide/attribute-directives.md
index 03c600ab97..bec3a903ac 100644
--- a/aio/content/guide/attribute-directives.md
+++ b/aio/content/guide/attribute-directives.md
@@ -15,7 +15,7 @@ There are three kinds of directives in Angular:
1. Attribute directives—change the appearance or behavior of an element, component, or another directive.
*Components* are the most common of the three directives.
-You saw a component for the first time in the [QuickStart](guide/quickstart) guide.
+You saw a component for the first time in the [Getting Started](guide/quickstart).
*Structural Directives* change the structure of the view.
Two examples are [NgFor](guide/template-syntax#ngFor) and [NgIf](guide/template-syntax#ngIf).
diff --git a/aio/content/guide/displaying-data.md b/aio/content/guide/displaying-data.md
index 6f3ba5ea45..f8fe2062d7 100644
--- a/aio/content/guide/displaying-data.md
+++ b/aio/content/guide/displaying-data.md
@@ -31,7 +31,7 @@ The easiest way to display a component property
is to bind the property name through interpolation.
With interpolation, you put the property name in the view template, enclosed in double curly braces: `{{myHero}}`.
-Follow the [quickstart](guide/quickstart) instructions for creating a new project
+Follow the [Getting Started](guide/quickstart) instructions for creating a new project
named displaying-data
.
Delete the app.component.html
file. It is not needed for this example.
diff --git a/aio/content/guide/glossary.md b/aio/content/guide/glossary.md
index 799dc2421c..f1c00b9bf7 100644
--- a/aio/content/guide/glossary.md
+++ b/aio/content/guide/glossary.md
@@ -132,7 +132,7 @@ A [decorator](guide/glossary#decorator) statement immediately before a field in
The [Angular CLI](https://cli.angular.io/) is a command-line tool for managing the Angular development cycle. Use it to create the initial filesystem scaffolding for a [workspace](guide/glossary#workspace) or [project](guide/glossary#project), and to run [schematics](guide/glossary#schematic) that add and modify code for initial generic versions of various elements. The CLI supports all stages of the development cycle, including building, testing, bundling, and deployment.
-* To begin using the CLI for a new project, see [QuickStart](guide/quickstart).
+* To begin using the CLI for a new project, see [Getting Started](guide/quickstart).
* To learn more about the full capabilities of the CLI, see the [Angular CLI documentation](https://github.com/angular/angular-cli/wiki).
{@a component}
diff --git a/aio/content/guide/quickstart.md b/aio/content/guide/quickstart.md
index 36ef5e056d..4bc09cf860 100644
--- a/aio/content/guide/quickstart.md
+++ b/aio/content/guide/quickstart.md
@@ -1,4 +1,4 @@
-# QuickStart
+# Getting Started
Good tools make application development quicker and easier to maintain than
if you did everything by hand.
@@ -147,7 +147,7 @@ Open `src/app/app.component.css` and give the component some style.
+
Get going on your own environment with the Quickstart.
+Get going on your own environment with the Getting Started.