docs: change page title and minor edit (#36021)

PR Close #36021
This commit is contained in:
Judy Bogart 2020-03-11 09:15:44 -07:00 committed by Alex Rickabaugh
parent 4d1d0fa03b
commit 702e17cfe2
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
# Bootstrapping # Launching your app with a root module
#### Prerequisites #### Prerequisites
@ -7,12 +7,12 @@ 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. which must be present for bootstrapping the application on launch.
By convention, it is usually called `AppModule`. By convention and by default, this NgModule is named `AppModule`.
If you use the [Angular CLI](cli) to generate an app, the default `AppModule` is as follows: When you use the [Angular CLI](cli) command `ng new` to generate an app, the default `AppModule` is as follows.
```typescript ```typescript
/* JavaScript imports */ /* JavaScript imports */

View File

@ -313,7 +313,7 @@
}, },
{ {
"url": "guide/bootstrapping", "url": "guide/bootstrapping",
"title": "App Root NgModule", "title": "Launching Apps with a Root Module",
"tooltip": "Tell Angular how to construct and bootstrap the app in the root \"AppModule\"." "tooltip": "Tell Angular how to construct and bootstrap the app in the root \"AppModule\"."
}, },
{ {