From e8642d461687a06e63756d49a93d093e6d8a88ee Mon Sep 17 00:00:00 2001 From: amandaegraham Date: Mon, 18 Jul 2016 22:03:19 -0400 Subject: [PATCH] HTML Section Copy Edit Waterloo ENGL 210J Student Line 44: Changed tense Line 54: Changed wording of second sentence to not start with 'and'. Added DOM meaning (Document Object Model) --- public/docs/ts/latest/guide/template-syntax.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/docs/ts/latest/guide/template-syntax.jade b/public/docs/ts/latest/guide/template-syntax.jade index 317d6aa8b8..aa065874d7 100644 --- a/public/docs/ts/latest/guide/template-syntax.jade +++ b/public/docs/ts/latest/guide/template-syntax.jade @@ -41,7 +41,7 @@ block includes .l-main-section :marked ## HTML - HTML is the language of the Angular template. Our [QuickStart](../quickstart.html) application had a template that was pure HTML: + HTML is the language of the Angular template. Our [QuickStart](../quickstart.html) application has a template that is pure HTML: code-example(language="html" escape="html").

My First Angular 2 App

@@ -51,7 +51,7 @@ code-example(language="html" escape="html"). Some legal HTML doesn’t make much sense in a template. The ``, ``, and `` elements have no useful role in our repertoire. Pretty much everything else is fair game. - We can extend the HTML vocabulary of our templates with components and directives that appear as new elements and attributes. And we are about to learn how to get and set DOM values dynamically through data binding. + We can extend the HTML vocabulary of our templates with components and directives that appear as new elements and attributes. In the following sections we are going to learn how to get and set DOM (Document Object Model) values dynamically through data binding. Let’s turn to the first form of data binding — interpolation — to see how much richer template HTML can be.