docs: fix link texts

Fixes #19701

PR Close #19709
This commit is contained in:
George Kalpakas
2017-10-13 22:27:38 +03:00
committed by Matias Niemelä
parent 6fbc2b3be0
commit 901436e46f
10 changed files with 47 additions and 47 deletions

View File

@ -11,7 +11,7 @@
*/
export abstract class ChangeDetectorRef {
/**
* Marks all {@link ChangeDetectionStrategy#OnPush} ancestors as to be checked.
* Marks all {@link ChangeDetectionStrategy#OnPush OnPush} ancestors as to be checked.
*
* <!-- TODO: Add a link to a chapter on OnPush components -->
*
@ -53,9 +53,8 @@ export abstract class ChangeDetectorRef {
*
* The detached change detector will not be checked until it is reattached.
*
* This can also be used in combination with {@link ChangeDetectorRef#detectChanges} to implement
* local change
* detection checks.
* This can also be used in combination with {@link ChangeDetectorRef#detectChanges detectChanges}
* to implement local change detection checks.
*
* <!-- TODO: Add a link to a chapter on detach/reattach/local digest -->
* <!-- TODO: Add a live demo once ref.detectChanges is merged into master -->
@ -106,9 +105,8 @@ export abstract class ChangeDetectorRef {
/**
* Checks the change detector and its children.
*
* This can also be used in combination with {@link ChangeDetectorRef#detach} to implement local
* change detection
* checks.
* This can also be used in combination with {@link ChangeDetectorRef#detach detach} to implement
* local change detection checks.
*
* <!-- TODO: Add a link to a chapter on detach/reattach/local digest -->
* <!-- TODO: Add a live demo once ref.detectChanges is merged into master -->
@ -123,7 +121,7 @@ export abstract class ChangeDetectorRef {
* check
* every five seconds.
*
* See {@link ChangeDetectorRef#detach} for more information.
* See {@link ChangeDetectorRef#detach detach} for more information.
*/
abstract detectChanges(): void;