docs(fix-docgen): Fix docgen issues with some recent updates to core

This commit is contained in:
Naomi Black 2015-08-02 23:40:18 -07:00
parent d40ff0bb89
commit cf6ffd5469
1 changed files with 3 additions and 8 deletions

View File

@ -923,7 +923,6 @@ export enum LifecycleEvent {
* } * }
* } * }
* ``` * ```
* @exportedAs angular2/annotations
*/ */
onDestroy, onDestroy,
@ -961,7 +960,6 @@ export enum LifecycleEvent {
* } * }
* } * }
* ``` * ```
* @exportedAs angular2/annotations
*/ */
onChange, onChange,
@ -973,7 +971,7 @@ export enum LifecycleEvent {
* *
* It is invoked every time even when none of the directive's bindings has changed. * It is invoked every time even when none of the directive's bindings has changed.
* *
* ## Example: * ## Example
* *
* ``` * ```
* @Directive({ * @Directive({
@ -985,7 +983,6 @@ export enum LifecycleEvent {
* } * }
* } * }
* ``` * ```
* @exportedAs angular2/annotations
*/ */
onCheck, onCheck,
@ -997,7 +994,7 @@ export enum LifecycleEvent {
* *
* It is invoked only once. * It is invoked only once.
* *
* ## Example: * ## Example
* *
* ``` * ```
* @Directive({ * @Directive({
@ -1009,7 +1006,6 @@ export enum LifecycleEvent {
* } * }
* } * }
* ``` * ```
* @exportedAs angular2/annotations
*/ */
onInit, onInit,
@ -1017,7 +1013,7 @@ export enum LifecycleEvent {
* Notify a directive when the bindings of all its children have been checked (whether they have * Notify a directive when the bindings of all its children have been checked (whether they have
* changed or not). * changed or not).
* *
* ## Example: * ## Example
* *
* ``` * ```
* @Directive({ * @Directive({
@ -1031,7 +1027,6 @@ export enum LifecycleEvent {
* *
* } * }
* ``` * ```
* @exportedAs angular2/annotations
*/ */
onAllChangesDone onAllChangesDone
} }