You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
Copy file name to clipboardExpand all lines: public/docs/ts/latest/glossary.jade
+19-20Lines changed: 19 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ block includes
143
143
144
144
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.
145
145
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).
147
147
When you see "camelCase" in this documentation it always means *lower camel case*.
148
148
149
149
:marked
@@ -297,7 +297,7 @@ block includes
297
297
it creates the matching directive class instance
298
298
and gives the instance control over that portion of the browser DOM.
299
299
300
-
You can invent custom HTML markup (e.g., `<my-directive>`) to
300
+
You can invent custom HTML markup (for example, `<my-directive>`) to
301
301
associate with your custom directives. You add this custom markup to HTML templates
302
302
as if you were writing native HTML. In this way, directives become extensions of
303
303
HTML itself.
@@ -449,7 +449,7 @@ a#H
449
449
:marked
450
450
In Angular, there are two types of modules:
451
451
- [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.
453
453
- ES2015 modules, as described in this section.
454
454
455
455
:marked
@@ -496,12 +496,12 @@ a#N
496
496
## Output
497
497
.l-sub-section
498
498
:marked
499
-
A directive property that can be the ***target*** of an
Events stream *out* of this property to the receiver identified
502
502
in the template expression to the right of the equal sign.
503
503
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.
505
505
506
506
.l-main-section#P
507
507
@@ -511,8 +511,7 @@ a#N
511
511
:marked
512
512
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`.
513
513
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*.
516
515
517
516
:marked
518
517
## Pipe
@@ -537,7 +536,7 @@ a#N
537
536
.l-sub-section
538
537
:marked
539
538
A [Provider](!{_ProviderUrl}) creates a new instance of a dependency for the
It relates a lookup token to code—sometimes called a "recipe"—that can create a dependency value.
542
541
543
542
a#Q
@@ -568,7 +567,7 @@ a#Q
568
567
and performing other similar actions that cause the application to
569
568
replace one view with another.
570
569
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
572
571
of views.
573
572
+ifDocsFor('ts|js')
574
573
:marked
@@ -581,7 +580,7 @@ a#Q
581
580
Other views in the application likely have anchor tags or buttons with `RouterLink`
582
581
directives that users can click to navigate.
583
582
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.
585
584
586
585
+ifDocsFor('ts|js')
587
586
:marked
@@ -590,7 +589,7 @@ a#Q
590
589
:marked
591
590
A separate [Angular module](#angular-module) that provides the necessary service providers and directives for navigating through application views.
592
591
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.
594
593
595
594
:marked
596
595
## Routing Component
@@ -599,7 +598,7 @@ a#Q
599
598
:marked
600
599
An Angular [component](#component) with a RouterOutlet that displays views based on router navigations.
601
600
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.
603
602
604
603
.l-main-section#S
605
604
@@ -643,13 +642,13 @@ a#snake-case
643
642
independent from any specific view,
644
643
provide shared data or logic across components, or encapsulate external interactions.
645
644
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.
647
646
648
647
:marked
649
648
## Structural Directive
650
649
.l-sub-section
651
650
:marked
652
-
A category of [Directive](#directive) that can
651
+
A category of [directive](#directive) that can
653
652
shape or reshape HTML layout, typically by adding, removing, or manipulating
654
653
elements and their children; for example, the `ngIf` "conditional element" directive and the `ngFor` "repeater" directive.
655
654
@@ -661,7 +660,7 @@ a#snake-case
661
660
.l-sub-section
662
661
:marked
663
662
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),
665
664
most notably a [component](#component).
666
665
667
666
@@ -706,7 +705,7 @@ a#snake-case
706
705
.l-sub-section
707
706
:marked
708
707
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).
710
709
711
710
TypeScript is also noteable for its optional typing system, which gives
712
711
us compile-time type checking and strong tooling support (for example, "intellisense",
@@ -716,7 +715,7 @@ a#snake-case
716
715
TypeScript is the preferred language for Angular 2 development although
717
716
you can use other JavaScript dialects such as [ES5](#es5).
718
717
719
-
Read more about TypeScript on its [website](http://www.typescriptlang.org/).
718
+
Read more about TypeScript at [typescript.org](http://www.typescriptlang.org/).
720
719
721
720
a#U
722
721
.l-main-section#V
@@ -728,8 +727,8 @@ a#U
728
727
A view is a portion of the screen that displays information and responds
729
728
to user actions such as clicks, mouse moves, and keystrokes.
730
729
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).
733
732
The component plays such a prominent role that it's often
0 commit comments