From b304bd0535b2f51042f31458c9431174271e41c7 Mon Sep 17 00:00:00 2001 From: Aristeidis Bampakos Date: Sat, 21 Mar 2020 00:00:32 +0200 Subject: [PATCH] docs: change definition of NgModules in Angular concepts guide (#36179) Indicate that the basic building block in Angular is the component which is organized into modules PR Close #36179 --- 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 a121f9abe7..8a8d6309f1 100644 --- a/aio/content/guide/architecture.md +++ b/aio/content/guide/architecture.md @@ -5,7 +5,7 @@ Angular is written in TypeScript. It implements core and optional functionality as a set of TypeScript libraries that you import into your apps. The architecture of an Angular application relies on certain fundamental concepts. -The basic building blocks are *NgModules*, which provide a compilation context for *components*. NgModules collect related code into functional sets; an Angular app is defined by a set of NgModules. An app always has at least a *root module* that enables bootstrapping, and typically has many more *feature modules*. +The basic building blocks of the Angular framework are Angular components that are organized into *NgModules*. NgModules collect related code into functional sets; an Angular app is defined by a set of NgModules. An app always has at least a *root module* that enables bootstrapping, and typically has many more *feature modules*. * Components define *views*, which are sets of screen elements that Angular can choose among and modify according to your program logic and data.