docs: Adds NgModule into back-ticks (#34302)

PR Close #34302
This commit is contained in:
Sonu Kapoor 2019-12-07 17:11:30 -05:00 committed by Andrew Kushnir
parent 2f3d41f081
commit 7823c23932
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ A basic understanding of the following:
<hr /> <hr />
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 Every application has at least one Angular module, the _root_ module
that you bootstrap to launch the application. that you bootstrap to launch the application.
By convention, it is usually called `AppModule`. By convention, it is usually called `AppModule`.
@ -109,7 +109,7 @@ The following example, named `ItemDirective` is the default directive structure
<code-example path="bootstrapping/src/app/item.directive.ts" region="directive" header="src/app/item.directive.ts"></code-example> <code-example path="bootstrapping/src/app/item.directive.ts" region="directive" header="src/app/item.directive.ts"></code-example>
The key point here is that you have to export it so you can import it elsewhere. Next, import it 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:
<code-example path="bootstrapping/src/app/app.module.ts" region="directive-import" header="src/app/app.module.ts"></code-example> <code-example path="bootstrapping/src/app/app.module.ts" region="directive-import" header="src/app/app.module.ts"></code-example>