diff --git a/aio/content/guide/bootstrapping.md b/aio/content/guide/bootstrapping.md index 7dc9b0adc6..f6a8b19d5a 100644 --- a/aio/content/guide/bootstrapping.md +++ b/aio/content/guide/bootstrapping.md @@ -7,7 +7,7 @@ A basic understanding of the following:
-An NgModule describes how the application parts fit together. +An `NgModule` describes how the application parts fit together. Every application has at least one Angular module, the _root_ module that you bootstrap to launch the application. By convention, it is usually called `AppModule`. @@ -109,7 +109,7 @@ The following example, named `ItemDirective` is the default directive structure The key point here is that you have to export it so you can import it elsewhere. Next, import it -into the NgModule, in this example `app.module.ts`, with a JavaScript import statement: +into the `NgModule`, in this example `app.module.ts`, with a JavaScript import statement: