From 7823c23932a6f5860c6719a6bfe0433d41734357 Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Sat, 7 Dec 2019 17:11:30 -0500 Subject: [PATCH] docs: Adds NgModule into back-ticks (#34302) PR Close #34302 --- aio/content/guide/bootstrapping.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: