From f1ed022a4df71edd695e839a7d136925bd82904e Mon Sep 17 00:00:00 2001 From: Justin Noel Date: Sat, 11 Aug 2018 08:24:16 +0100 Subject: [PATCH] docs: fix typo in Architecture overview page (#25438) PR Close #25438 --- aio/content/guide/architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/architecture.md b/aio/content/guide/architecture.md index 2cb91390d5..2728f3c09d 100644 --- a/aio/content/guide/architecture.md +++ b/aio/content/guide/architecture.md @@ -51,7 +51,7 @@ The `@Component()` decorator identifies the class immediately below it as a comp A template combines HTML with Angular markup that can modify HTML elements before they are displayed. Template *directives* provide program logic, and *binding markup* connects your application data and the DOM. -There are tow types of data binding: +There are two types of data binding: * *Event binding* lets your app respond to user input in the target environment by updating your application data. * *Property binding* lets you interpolate values that are computed from your application data into the HTML.