docs: wrong links in lifecycle hooks api documentaion (#36557)

lifecycle hooks api detailed documentation contained links which were pointing to onChanges hook only which is removed, made each hook point towards its deafult page link

PR Close #36557
This commit is contained in:
Ajit Singh 2020-05-18 09:25:00 +05:30 committed by atscott
parent f6ee911cbb
commit cb1373106b
1 changed files with 8 additions and 8 deletions

View File

@ -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