From 47b6b05017eaab46d58eac0c13fb2b2b65b1e3fa Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Tue, 9 Jun 2015 09:56:29 +0200 Subject: [PATCH] doc(Directive): fix the inline doc for lifecycle events --- modules/angular2/src/core/annotations_impl/annotations.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/angular2/src/core/annotations_impl/annotations.ts b/modules/angular2/src/core/annotations_impl/annotations.ts index 6de1fb9dcc..b79e842924 100644 --- a/modules/angular2/src/core/annotations_impl/annotations.ts +++ b/modules/angular2/src/core/annotations_impl/annotations.ts @@ -722,10 +722,10 @@ export class Directive extends Injectable { hostActions: StringMap; /** - * Specifies a set of lifecycle hostListeners in which the directive participates. + * Specifies which lifecycle should be notified to the directive. * - * See {@link annotations/onChange}, {@link annotations/onDestroy}, - * {@link annotations/onAllChangesDone} for details. + * See {@link annotations/onChange}, {@link annotations/onDestroy}, {@link annotations/onCheck}, + * {@link annotations/onInit}, {@link annotations/onAllChangesDone} for details. */ lifecycle: List;