From 779053566426b21f688ca918b2c412cf68100193 Mon Sep 17 00:00:00 2001 From: David Lau Date: Thu, 27 Jun 2019 19:11:43 -0700 Subject: [PATCH] Example of view and class logic files swapped (#28928) The file containing class logic usually resides in the *.component.ts file and the view container in the *.component.html. The examples were switched around. --- guide/english/angular/data-binding/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/angular/data-binding/index.md b/guide/english/angular/data-binding/index.md index 15aa330808..c1eb042fb9 100644 --- a/guide/english/angular/data-binding/index.md +++ b/guide/english/angular/data-binding/index.md @@ -6,7 +6,7 @@ title: Data Binding #### Motivation -Data often defines the look of an application. Interpreting that data into the user interface involves class logic (`.component.html`) and a template view (`.component.ts`) . Angular connects them through data binding. Think of data binding as a tool for component interaction. +Data often defines the look of an application. Interpreting that data into the user interface involves class logic (`*.component.ts`) and a template view (`*.component.html`) . Angular connects them through data binding. Think of data binding as a tool for component interaction. #### Component and Template