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

Commit e45cd49

Browse files
Glossary Updates
1 parent 799e2a5 commit e45cd49

File tree

1 file changed

+19
-20
lines changed

1 file changed

+19
-20
lines changed

public/docs/ts/latest/glossary.jade

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ block includes
143143

144144
Function, property, and method names are typically spelled in camelCase. Examples include: `square`, `firstName` and `getHeroes`. Notice that `square` is an example of how you write a single word in camelCase.
145145

146-
This form is also known as **lower camel case**, to distinguish it from **upper camel case** which is [PascalCase](#pascalcase).
146+
This form is also known as **lower camel case**, to distinguish it from **upper camel case**, which is [PascalCase](#pascalcase).
147147
When you see "camelCase" in this documentation it always means *lower camel case*.
148148

149149
:marked
@@ -297,7 +297,7 @@ block includes
297297
it creates the matching directive class instance
298298
and gives the instance control over that portion of the browser DOM.
299299

300-
You can invent custom HTML markup (e.g., `<my-directive>`) to
300+
You can invent custom HTML markup (for example, `<my-directive>`) to
301301
associate with your custom directives. You add this custom markup to HTML templates
302302
as if you were writing native HTML. In this way, directives become extensions of
303303
HTML itself.
@@ -449,7 +449,7 @@ a#H
449449
:marked
450450
In Angular, there are two types of modules:
451451
- [Angular modules](#angular-module).
452-
For details and examples, see the [Angular Module](!{docsLatest}/guide/ngmodule.html) page.
452+
For details and examples, see the [Angular Modules](!{docsLatest}/guide/ngmodule.html) page.
453453
- ES2015 modules, as described in this section.
454454

455455
:marked
@@ -496,12 +496,12 @@ a#N
496496
## Output
497497
.l-sub-section
498498
:marked
499-
A directive property that can be the ***target*** of an
500-
[Event Binding](!{docsLatest}/guide/template-syntax.html#property-binding).
499+
A directive property that can be the ***target*** of
500+
[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.
503503

504-
See the [Template Syntax](!{docsLatest}/guide/template-syntax.html#inputs-outputs) page.
504+
See the [Input and output properties](!{docsLatest}/guide/template-syntax.html#inputs-outputs) section of the [Template Syntax](!{docsLatest}/guide/template-syntax.html) page.
505505

506506
.l-main-section#P
507507

@@ -511,8 +511,7 @@ a#N
511511
:marked
512512
The practice of writing individual words, compound words, or phrases such that each word or abbreviation begins with a capital letter. Class names are typically spelled in PascalCase. Examples include: `Person` and `HeroDetailComponent`.
513513

514-
This form is also known as **upper camel case** to distinguish it from **lower camel case** which we simply call [camelCase](#camelcase).
515-
In this documentation, "PascalCase" means *upper camel case* and "camelCase" means *lower camel case*.
514+
This form is also known as **upper camel case** to distinguish it from **lower camel case**, which is simply called [camelCase](#camelcase). In this documentation, "PascalCase" means *upper camel case* and "camelCase" means *lower camel case*.
516515

517516
:marked
518517
## Pipe
@@ -537,7 +536,7 @@ a#N
537536
.l-sub-section
538537
:marked
539538
A [Provider](!{_ProviderUrl}) creates a new instance of a dependency for the
540-
[Dependency Injection](#dependency-injection) system.
539+
[dependency injection](#dependency-injection) system.
541540
It relates a lookup token to code&mdash;sometimes called a "recipe"&mdash;that can create a dependency value.
542541

543542
a#Q
@@ -568,7 +567,7 @@ a#Q
568567
and performing other similar actions that cause the application to
569568
replace one view with another.
570569

571-
The Angular [Component Router](!{docsLatest}/guide/router.html) is a richly featured mechanism for configuring and managing the entire view navigation process including the creation and destruction
570+
The Angular [component router](!{docsLatest}/guide/router.html) is a richly featured mechanism for configuring and managing the entire view navigation process including the creation and destruction
572571
of views.
573572
+ifDocsFor('ts|js')
574573
:marked
@@ -581,7 +580,7 @@ a#Q
581580
Other views in the application likely have anchor tags or buttons with `RouterLink`
582581
directives that users can click to navigate.
583582

584-
For more information, see the [Component Router](!{docsLatest}/guide/router.html) page.
583+
For more information, see the [Routing & Navigation](!{docsLatest}/guide/router.html) page.
585584

586585
+ifDocsFor('ts|js')
587586
:marked
@@ -590,7 +589,7 @@ a#Q
590589
:marked
591590
A separate [Angular module](#angular-module) that provides the necessary service providers and directives for navigating through application views.
592591

593-
For more information, see the [Component Router](!{docsLatest}/guide/router.html) page.
592+
For more information, see the [Routing & Navigation](!{docsLatest}/guide/router.html) page.
594593

595594
:marked
596595
## Routing Component
@@ -599,7 +598,7 @@ a#Q
599598
:marked
600599
An Angular [component](#component) with a RouterOutlet that displays views based on router navigations.
601600

602-
For more information, see the [Component Router](!{docsLatest}/guide/router.html) page.
601+
For more information, see the [Routing & Navigation](!{docsLatest}/guide/router.html) page.
603602

604603
.l-main-section#S
605604

@@ -643,13 +642,13 @@ a#snake-case
643642
independent from any specific view,
644643
provide shared data or logic across components, or encapsulate external interactions.
645644

646-
For more information, see the [Services](!{docsLatest}/tutorial/toh-pt4.html) page.
645+
For more information, see the [Services](!{docsLatest}/tutorial/toh-pt4.html) page of the [Tour of Heroes](!{docsLatest}/tutorial/) tutorial.
647646

648647
:marked
649648
## Structural Directive
650649
.l-sub-section
651650
:marked
652-
A category of [Directive](#directive) that can
651+
A category of [directive](#directive) that can
653652
shape or reshape HTML layout, typically by adding, removing, or manipulating
654653
elements and their children; for example, the `ngIf` "conditional element" directive and the `ngFor` "repeater" directive.
655654

@@ -661,7 +660,7 @@ a#snake-case
661660
.l-sub-section
662661
:marked
663662
A template is a chunk of HTML that Angular uses to render a [view](#view) with
664-
the support and continuing guidance of an Angular [Directive](#directive),
663+
the support and continuing guidance of an Angular [directive](#directive),
665664
most notably a [component](#component).
666665

667666

@@ -706,7 +705,7 @@ a#snake-case
706705
.l-sub-section
707706
:marked
708707
A version of JavaScript that supports most [ECMAScript 2015](#ecmascript=2015)
709-
language features such as [Decorators](#decorator).
708+
language features such as [decorators](#decorator).
710709

711710
TypeScript is also noteable for its optional typing system, which gives
712711
us compile-time type checking and strong tooling support (for example, "intellisense",
@@ -716,7 +715,7 @@ a#snake-case
716715
TypeScript is the preferred language for Angular 2 development although
717716
you can use other JavaScript dialects such as [ES5](#es5).
718717

719-
Read more about TypeScript on its [website](http://www.typescriptlang.org/).
718+
Read more about TypeScript at [typescript.org](http://www.typescriptlang.org/).
720719

721720
a#U
722721
.l-main-section#V
@@ -728,8 +727,8 @@ a#U
728727
A view is a portion of the screen that displays information and responds
729728
to user actions such as clicks, mouse moves, and keystrokes.
730729

731-
Angular renders a view under the control of one or more [Directives](#directive),
732-
especially [component](#component) directives and their companion [Templates](#template).
730+
Angular renders a view under the control of one or more [directives](#directive),
731+
especially [component](#component) directives and their companion [templates](#template).
733732
The component plays such a prominent role that it's often
734733
convenient to refer to a component as a view.
735734

0 commit comments

Comments
 (0)