From e4227ef924d124e94668b71dfa612d25ba89e387 Mon Sep 17 00:00:00 2001 From: D3T0N8R Date: Fri, 10 May 2019 09:27:49 -0400 Subject: [PATCH] docs: change reference to jQuery programmers The section on Data Binding makes a reference to "any experienced jQuery programmer" which is a bit too narrow since there are also programmers that write their front end in pure JavaScript. --- aio/content/guide/architecture-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/architecture-components.md b/aio/content/guide/architecture-components.md index 75b1029fbd356..c140abd4e96d6 100644 --- a/aio/content/guide/architecture-components.md +++ b/aio/content/guide/architecture-components.md @@ -75,7 +75,7 @@ Notice how custom components like this mix seamlessly with native HTML in the sa ### Data binding -Without a framework, you would be responsible for pushing data values into the HTML controls and turning user responses into actions and value updates. Writing such push and pull logic by hand is tedious, error-prone, and a nightmare to read, as any experienced jQuery programmer can attest. +Without a framework, you would be responsible for pushing data values into the HTML controls and turning user responses into actions and value updates. Writing such push and pull logic by hand is tedious, error-prone, and a nightmare to read, as any experienced front-end JavaScript programmer can attest. Angular supports *two-way data binding*, a mechanism for coordinating the parts of a template with the parts of a component. Add binding markup to the template HTML to tell Angular how to connect both sides.