This repository was archived by the owner on Feb 22, 2018. It is now read-only.
File tree 3 files changed +18
-17
lines changed
3 files changed +18
-17
lines changed Original file line number Diff line number Diff line change 1
- /**
2
- * Directives for [angular.dart] (#angular/angular), a web framework for Dart. A directive attaches
3
- * a specified behavior to a DOM element .
1
+ /**
2
+ * All of the core directives available in Angular. This library is included as part of [angular
3
+ * .dart](#angular/angular) .
4
4
*
5
- * This library is included as part of [angular.dart] (#angular/angular). It provides all of
6
- * the core Directives available in Angular. You can extend Angular by writing your own directives
7
- * and providing them as part of a custom library.
5
+ * A directive attaches a specified behavior to a DOM element. You can extend Angular by writing
6
+ * your own directives and providing them as part of a custom library.
8
7
*
9
8
* Directives consist of a class specifying the behavior, and a directive annotation (such as a
10
- * [Decorator] (#angular-core-annotation.Decorator) or a [Component] (#angular-core-annotation.Component)) that
11
- * describes when the behavior should be applied.
9
+ * [Decorator] (#angular-core-annotation.Decorator) or a
10
+ * [Component] (#angular-core-annotation.Component)) that describes when the behavior should be
11
+ * applied.
12
12
*
13
13
* For example:
14
14
*
Original file line number Diff line number Diff line change 1
1
/**
2
- * Formatters for [angular.dart] (#angular/angular), a web framework for Dart. A formatter is a
3
- * pure function that performs a transformation on input data from an expression .
2
+ * All of the core formatters available in Angular. This library is included as part of
3
+ * [angular.dart] (#angular/angular) .
4
4
*
5
- * This library is included as part of [angular.dart] (#angular/angular). It provides all of
6
- * the core formatters available in Angular. You can extend Angular by writing your own formatters
7
- * and providing them as part of a custom library. See the @[Formatter] (#angular-core-annotation
8
- * .Formatter) class annotation for more detail.
5
+ * A formatter is a pure function that performs a transformation on input data from an expression.
6
+ * You can extend Angular by writing your own formatters and providing them as part of a custom
7
+ * library. See the @[Formatter] (#angular-core-annotation .Formatter) class annotation for more
8
+ * detail.
9
9
*
10
10
* Formatters are typically used within `{{ }}` to
11
11
* convert data to human-readable form. They may also be used inside repeaters to transform arrays.
12
12
*
13
13
* For example:
14
14
*
15
- * {{ expression | json }}
15
+ * {{ expression | uppercase }}
16
16
*
17
17
* or, in a repeater:
18
18
*
Original file line number Diff line number Diff line change @@ -22,8 +22,9 @@ part 'stringify.dart';
22
22
/**
23
23
* This module registers all the Angular formatters.
24
24
*
25
- * When instantiating an Angular application through applicationFactory,
26
- * FormatterModule is automatically included.
25
+ * When instantiating an Angular application through
26
+ * [applicationFactory] (#angular-app-factory@id_applicationFactory), FormatterModule is
27
+ * automatically included.
27
28
*/
28
29
class FormatterModule extends Module {
29
30
FormatterModule () {
You can’t perform that action at this time.
0 commit comments