diff --git a/packages/core/src/interface/lifecycle_hooks.ts b/packages/core/src/interface/lifecycle_hooks.ts index eff211692e..45d84c4a80 100644 --- a/packages/core/src/interface/lifecycle_hooks.ts +++ b/packages/core/src/interface/lifecycle_hooks.ts @@ -15,7 +15,7 @@ import {SimpleChanges} from './simple_change'; * * @see `DoCheck` * @see `OnInit` - * @see [Lifecycle Hooks](guide/lifecycle-hooks#onchanges) guide + * @see [Lifecycle hooks guide](guide/lifecycle-hooks) * * @usageNotes * The following snippet shows how a component can implement this interface to @@ -43,7 +43,7 @@ export interface OnChanges { * Define an `ngOnInit()` method to handle any additional initialization tasks. * * @see `AfterContentInit` - * @see [Lifecycle Hooks](guide/lifecycle-hooks#onchanges) guide + * @see [Lifecycle hooks guide](guide/lifecycle-hooks) * * @usageNotes * The following snippet shows how a component can implement this interface to @@ -78,7 +78,7 @@ export interface OnInit { * changes on the same input. * * @see `OnChanges` - * @see [Lifecycle Hooks](guide/lifecycle-hooks#onchanges) guide + * @see [Lifecycle hooks guide](guide/lifecycle-hooks) * * @usageNotes * The following snippet shows how a component can implement this interface @@ -103,7 +103,7 @@ export interface DoCheck { * A lifecycle hook that is called when a directive, pipe, or service is destroyed. * Use for any custom cleanup that needs to occur when the * instance is destroyed. - * @see [Lifecycle Hooks](guide/lifecycle-hooks#onchanges) guide + * @see [Lifecycle hooks guide](guide/lifecycle-hooks) * * @usageNotes * The following snippet shows how a component can implement this interface @@ -129,7 +129,7 @@ export interface OnDestroy { * * @see `OnInit` * @see `AfterViewInit` - * @see [Lifecycle Hooks](guide/lifecycle-hooks#onchanges) guide + * @see [Lifecycle hooks guide](guide/lifecycle-hooks) * * @usageNotes * The following snippet shows how a component can implement this interface to @@ -155,7 +155,7 @@ export interface AfterContentInit { * completed checking all content of a directive. * * @see `AfterViewChecked` - * @see [Lifecycle Hooks](guide/lifecycle-hooks#onchanges) guide + * @see [Lifecycle hooks guide](guide/lifecycle-hooks) * * @usageNotes * The following snippet shows how a component can implement this interface to @@ -182,7 +182,7 @@ export interface AfterContentChecked { * * @see `OnInit` * @see `AfterContentInit` - * @see [Lifecycle Hooks](guide/lifecycle-hooks#onchanges) guide + * @see [Lifecycle hooks guide](guide/lifecycle-hooks) * * @usageNotes * The following snippet shows how a component can implement this interface to @@ -208,7 +208,7 @@ export interface AfterViewInit { * completed checking a component's view for changes. * * @see `AfterContentChecked` - * @see [Lifecycle Hooks](guide/lifecycle-hooks#onchanges) guide + * @see [Lifecycle hooks guide](guide/lifecycle-hooks) * * @usageNotes * The following snippet shows how a component can implement this interface to