Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit d487821

Browse files
copy edits
1 parent 1f8ba99 commit d487821

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

public/docs/ts/latest/glossary.jade

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ block includes
2828
+ifDocsFor('ts')
2929
a#aot
3030
:marked
31-
## Ahead of Time (AOT) compilation
31+
## Ahead-of-time (AoT) compilation
3232
.l-sub-section
3333
:marked
3434
You can compile Angular applications at build-time.
3535
By compiling your application using the compiler-cli, `ngc`, you can bootstrap directly
3636
to a module factory, meaning you don't need to include the Angular compiler in your JavaScript bundle.
37-
Ahead of time compiled applications also benefit from decreased load time and increased performance.
37+
Ahead-of-time compiled applications also benefit from decreased load time and increased performance.
3838

3939
:marked
4040
## Angular module
@@ -245,7 +245,7 @@ block includes
245245
that each do one thing well and then wiring them together at runtime.
246246

247247
These parts often rely on other parts. An Angular [component](#component)
248-
part might rely on a service part to get data or perform a calculation. When
248+
part might rely on a service part to get data or perform a calculation. When
249249
part "A" relies on another part "B", you say that "A" depends on "B" and
250250
that "B" is a dependency of "A".
251251

@@ -399,12 +399,12 @@ a#H
399399
+ifDocsFor('ts')
400400
a#jit
401401
:marked
402-
## Just in Time (JIT) compilation
402+
## Just-in-time (JiT) compilation
403403
.l-sub-section
404404
:marked
405-
With Angular _Just in Time_ bootstrapping you compile your components and modules in the browser
405+
With Angular _just-in-time_ bootstrapping you compile your components and modules in the browser
406406
and launch the application dynamically. This is a good choice during development.
407-
Consider using the [Ahead of Time](#aot) mode for production apps.
407+
Consider using the [ahead-of-time](#aot) mode for production apps.
408408

409409
.l-main-section#K
410410
:marked
@@ -422,7 +422,7 @@ a#H
422422
managed by Angular as it creates, updates, and destroys them.
423423

424424
You can tap into key moments in that lifecycle by implementing
425-
one or more of the "Lifecycle Hook" interfaces.
425+
one or more of the lifecycle hook interfaces.
426426

427427
Each interface has a single hook method whose name is the interface name prefixed with `ng`.
428428
For example, the `OnInit` interface has a hook method named `ngOnInit`.
@@ -496,7 +496,7 @@ a#N
496496
## Output
497497
.l-sub-section
498498
:marked
499-
A directive property that can be the ***target*** of
499+
A directive property that can be the ***target*** of
500500
[event binding](!{docsLatest}/guide/template-syntax.html#event-binding).
501501
Events stream *out* of this property to the receiver identified
502502
in the template expression to the right of the equal sign.
@@ -675,7 +675,7 @@ a#snake-case
675675
When building template-driven forms:
676676
- The "source of truth" is the template. The validation is defined using attributes on the individual input elements.
677677
- [Two-way binding](#data-binding) with `ngModel` keeps the component model in synchronization with the user's entry into the input elements.
678-
- Behind the scenes, Angular creates a new control for each input element, provided you have set up a `name` attribute and two-way binding for each input.
678+
- Behind the scenes, Angular creates a new control for each input element, provided you have set up a `name` attribute and two-way binding for each input.
679679
- The associated Angular directives are all prefixed with `ng` such as `ngForm`, `ngModel`, and `ngModelGroup`.
680680

681681
Template-driven forms are convenient, quick, and simple. They are a good choice for many basic data entry form scenarios.
@@ -688,7 +688,7 @@ a#snake-case
688688
.l-sub-section
689689
:marked
690690
An expression is a !{_Lang}-like syntax that Angular evaluates within
691-
a [data binding](#data-binding).
691+
a [data binding](#data-binding).
692692

693693
Read about how to write template expressions
694694
in the [Template Syntax](!{docsLatest}/guide/template-syntax.html#template-expressions) page.

0 commit comments

Comments
 (0)