Skip to content

Commit c921a96

Browse files
committed
45f5df3 docs(markdown): add missing space between markdown ### and text, turn h1 into h3s, remove bold.
1 parent ed858d6 commit c921a96

10 files changed

Lines changed: 505 additions & 654 deletions

File tree

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Wed Apr 20 04:20:47 UTC 2016
2-
0bffd18d05414680841a266be7b441f802936997
1+
Wed Apr 20 04:43:19 UTC 2016
2+
45f5df371db71ed20870beef0c1d5afc2517b256

_analyzer.dart

Lines changed: 498 additions & 500 deletions
Large diffs are not rendered by default.

lib/src/common/directives.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ library angular2.src.common.directives;
88
export "directives/ng_class.dart" show NgClass;
99
export "directives/ng_for.dart" show NgFor;
1010
export "directives/ng_if.dart" show NgIf;
11-
export "directives/ng_template_outlet.dart" show NgTemplateOutlet;
1211
export "directives/ng_style.dart" show NgStyle;
1312
export "directives/ng_switch.dart" show NgSwitch, NgSwitchWhen, NgSwitchDefault;
1413
export "directives/ng_plural.dart" show NgPlural, NgPluralCase, NgLocalization;

lib/src/common/directives/core_directives.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import "package:angular2/src/facade/lang.dart" show Type;
44
import "ng_class.dart" show NgClass;
55
import "ng_for.dart" show NgFor;
66
import "ng_if.dart" show NgIf;
7-
import "ng_template_outlet.dart" show NgTemplateOutlet;
87
import "ng_style.dart" show NgStyle;
98
import "ng_switch.dart" show NgSwitch, NgSwitchWhen, NgSwitchDefault;
109
import "ng_plural.dart" show NgPlural, NgPluralCase;
@@ -53,7 +52,6 @@ const List<Type> CORE_DIRECTIVES = const [
5352
NgClass,
5453
NgFor,
5554
NgIf,
56-
NgTemplateOutlet,
5755
NgStyle,
5856
NgSwitch,
5957
NgSwitchWhen,

lib/src/common/directives/ng_for.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import "../../facade/exceptions.dart" show BaseException;
2222
* each instantiated template inherits from the outer context with the given loop variable set
2323
* to the current item from the iterable.
2424
*
25-
* # Local Variables
25+
* ### Local Variables
2626
*
2727
* `NgFor` provides several exported values that can be aliased to local variables:
2828
*
@@ -34,7 +34,7 @@ import "../../facade/exceptions.dart" show BaseException;
3434
* * `even` will be set to a boolean value indicating whether this item has an even index.
3535
* * `odd` will be set to a boolean value indicating whether this item has an odd index.
3636
*
37-
* # Change Propagation
37+
* ### Change Propagation
3838
*
3939
* When the contents of the iterator changes, `NgFor` makes the corresponding changes to the DOM:
4040
*
@@ -57,7 +57,7 @@ import "../../facade/exceptions.dart" show BaseException;
5757
* elements were deleted and all new elements inserted). This is an expensive operation and should
5858
* be avoided if possible.
5959
*
60-
* # Syntax
60+
* ### Syntax
6161
*
6262
* - `<li *ngFor="#item of items; #i = index">...</li>`
6363
* - `<li template="ngFor #item of items; #i = index">...</li>`

lib/src/common/directives/ng_switch.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class SwitchView {
2929
* `NgSwitch` simply inserts nested elements based on which match expression matches the value
3030
* obtained from the evaluated switch expression. In other words, you define a container element
3131
* (where you place the directive with a switch expression on the
32-
* **`[ngSwitch]="..."` attribute**), define any inner elements inside of the directive and
32+
* `[ngSwitch]="..."` attribute), define any inner elements inside of the directive and
3333
* place a `[ngSwitchWhen]` attribute per element.
3434
*
3535
* The `ngSwitchWhen` property is used to inform `NgSwitch` which element to display when the

lib/src/common/directives/ng_template_outlet.dart

Lines changed: 0 additions & 30 deletions
This file was deleted.

lib/src/common/forms/directives/ng_form_control.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const formControlBinding =
5959
* }
6060
* ```
6161
*
62-
* ###ngModel
62+
* ### ngModel
6363
*
6464
* We can also use `ngModel` to bind a domain model to the form.
6565
*

test/common/directives/ng_template_outlet_spec.dart

Lines changed: 0 additions & 113 deletions
This file was deleted.

test/public_api_spec.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ var NG_COMMON = [
7676
"NgFormControl",
7777
"NgFormModel",
7878
"NgIf",
79-
"NgTemplateOutlet",
8079
"NgModel",
8180
"NgSelectOption",
8281
"NgStyle",

0 commit comments

Comments
 (0)