docs(change_detection): don't annotate exports that are already in public modules

Since `DynamicChangeDetection` and `JitChangeDetection` classes are alreadt in the
public module, they do not need to be annotated with a `@exportAs` tag

Closes #1353
This commit is contained in:
Peter Bacon Darwin 2015-04-14 13:22:41 +01:00
parent 896a1564ef
commit 0e3d0fbec6
1 changed files with 0 additions and 6 deletions

View File

@ -51,9 +51,6 @@ export var defaultPipes = {
}; };
/**
* @exportedAs angular2/change_detection
*/
export class DynamicChangeDetection extends ChangeDetection { export class DynamicChangeDetection extends ChangeDetection {
registry:PipeRegistry; registry:PipeRegistry;
@ -67,9 +64,6 @@ export class DynamicChangeDetection extends ChangeDetection {
} }
} }
/**
* @exportedAs angular2/change_detection
*/
export class JitChangeDetection extends ChangeDetection { export class JitChangeDetection extends ChangeDetection {
registry:PipeRegistry; registry:PipeRegistry;