From f5a9edc68cd4272b82bcc9c5882a308cb22a4a51 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Mon, 16 May 2016 23:16:11 -0700 Subject: [PATCH] docs(quickstart): say 'My First Angular 2 App' --- public/docs/js/latest/quickstart.jade | 2 +- public/docs/ts/latest/quickstart.jade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/docs/js/latest/quickstart.jade b/public/docs/js/latest/quickstart.jade index 1f32224176..298e9b0946 100644 --- a/public/docs/js/latest/quickstart.jade +++ b/public/docs/js/latest/quickstart.jade @@ -205,7 +205,7 @@ code-example(format=""). :marked The `template` property holds the component's companion template. A template is a form of HTML that tells Angular how to render a view. - Our template is a single line of HTML announcing "My First Angular App". + Our template is a single line of HTML announcing "My First Angular 2 App". Now we need something to tell Angular to load this component. diff --git a/public/docs/ts/latest/quickstart.jade b/public/docs/ts/latest/quickstart.jade index 27786b54b5..2f77ba2084 100644 --- a/public/docs/ts/latest/quickstart.jade +++ b/public/docs/ts/latest/quickstart.jade @@ -269,7 +269,7 @@ p. The **template** specifies the component's companion template, written in an enhanced form of HTML that tells Angular how to render this component's view. - >Our template is a single line of HTML announcing "*My First Angular App*". + >Our template is a single line of HTML announcing "*My First Angular 2 App*". >A more advanced template could contain data bindings to component properties and might identify other application components which have their own templates.