Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix stray div #21676

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 2 additions & 7 deletions aio/content/guide/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,11 @@ unexpected definitions.
## Ahead-of-time (AOT) compilation

You can compile Angular applications at build time.
By compiling your application using the compiler-cli, `ngc`, you can bootstrap directly
to a module factory, meaning you don't need to include the Angular compiler in your JavaScript bundle.
By compiling your application using the compiler-cli, `ngc`, you can bootstrap directly to a module factory, meaning you don't need to include the Angular compiler in your JavaScript bundle.
Ahead-of-time compiled applications also benefit from decreased load time and increased performance.



</div>


## Annotation

In practice, a synonym for [Decoration](guide/glossary#decorator).
Expand Down Expand Up @@ -126,8 +122,6 @@ between a "token"&mdash;also referred to as a "key"&mdash;and a dependency [prov
## Bootstrap


<div class="l-sub-section">

You launch an Angular application by "bootstrapping" it using the application root NgModule (`AppModule`).

Bootstrapping identifies an application's top level "root" [component](guide/glossary#component),
Expand Down Expand Up @@ -643,6 +637,7 @@ A separate [NgModule](guide/glossary#ngmodule) that provides the necessary servi

For more information, see the [Routing & Navigation](guide/router) page.

</div>

## Routing component

Expand Down