docs: changes AoT to AOT for consistency (#35112)

PR Close #35112
This commit is contained in:
Sonu Kapoor
2020-02-02 20:49:28 -05:00
committed by Miško Hevery
parent 991e665fba
commit 7fb66eca25
15 changed files with 24 additions and 24 deletions

View File

@ -27,7 +27,7 @@ let moduleUid = 0;
* instantiated.
*
* *Part of the [upgrade/static](api?query=upgrade/static) library for hybrid upgrade apps that
* support AoT compilation.*
* support AOT compilation.*
*
* It allows loading/bootstrapping the Angular part of a hybrid application lazily and not having to
* pay the cost up-front. For example, you can have an AngularJS application that uses Angular for

View File

@ -33,7 +33,7 @@ class Bindings {
* A helper class that allows an AngularJS component to be used from Angular.
*
* *Part of the [upgrade/static](api?query=upgrade%2Fstatic)
* library for hybrid upgrade apps that support AoT compilation.*
* library for hybrid upgrade apps that support AOT compilation.*
*
* This helper class should be used as a base class for creating Angular directives
* that wrap AngularJS components that need to be "upgraded".
@ -53,7 +53,7 @@ class Bindings {
*
* In this example you can see that we must derive from the `UpgradeComponent`
* base class but also provide an {@link Directive `@Directive`} decorator. This is
* because the AoT compiler requires that this information is statically available at
* because the AOT compiler requires that this information is statically available at
* compile time.
*
* Note that we must do the following:

View File

@ -24,10 +24,10 @@ import {NgAdapterInjector} from './util';
* and has an instance method used to bootstrap the hybrid upgrade application.
*
* *Part of the [upgrade/static](api?query=upgrade/static)
* library for hybrid upgrade apps that support AoT compilation*
* library for hybrid upgrade apps that support AOT compilation*
*
* The `upgrade/static` package contains helpers that allow AngularJS and Angular components
* to be used together inside a hybrid upgrade application, which supports AoT compilation.
* to be used together inside a hybrid upgrade application, which supports AOT compilation.
*
* Specifically, the classes and functions in the `upgrade/static` module allow the following:
*