From 43d5105e585918a217ce80d0e89a52f64589e6d9 Mon Sep 17 00:00:00 2001 From: Elan Hasson Date: Mon, 19 Nov 2018 23:13:16 -0500 Subject: [PATCH] docs: The note had an indentation and was missing line breaks (#27183) Fixed the formatting and made Note bold. PR Close #27183 --- aio/content/guide/architecture-modules.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aio/content/guide/architecture-modules.md b/aio/content/guide/architecture-modules.md index 241a9612da..6e48da900e 100644 --- a/aio/content/guide/architecture-modules.md +++ b/aio/content/guide/architecture-modules.md @@ -56,7 +56,9 @@ A component and its template together define a *view*. A component can contain a When you create a component, it's associated directly with a single view, called the *host view*. The host view can be the root of a view hierarchy, which can contain *embedded views*, which are in turn the host views of other components. Those components can be in the same NgModule, or can be imported from other NgModules. Views in the tree can be nested to any depth.
- **Note:** The hierarchical structure of views is a key factor in the way Angular detects and responds to changes in the DOM and app data. + +**Note:** The hierarchical structure of views is a key factor in the way Angular detects and responds to changes in the DOM and app data. +
## NgModules and JavaScript modules