From fe0782afa9d23b328315b07a65f79f5a4f23074e Mon Sep 17 00:00:00 2001 From: Moritz Obermeier Date: Tue, 18 Feb 2020 15:35:22 +0100 Subject: [PATCH] docs: small change in the Introduction (#35528) The word "both" is automatically connected with the previous two bullet points and not the following two (because documents are usually read from top to bottom), which made the original sentence confusing for first time readers. PR Close #35528 --- 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 24f0d9c6df..a121f9abe7 100644 --- a/aio/content/guide/architecture.md +++ b/aio/content/guide/architecture.md @@ -11,7 +11,7 @@ The basic building blocks are *NgModules*, which provide a compilation context f * Components use *services*, which provide specific functionality not directly related to views. Service providers can be *injected* into components as *dependencies*, making your code modular, reusable, and efficient. -Both components and services are simply classes, with *decorators* that mark their type and provide metadata that tells Angular how to use them. +Modules, components and services are classes that use *decorators*. These decorators mark their type and provide metadata that tells Angular how to use them. * The metadata for a component class associates it with a *template* that defines a view. A template combines ordinary HTML with Angular *directives* and *binding markup* that allow Angular to modify the HTML before rendering it for display.