Skip to content

Commit 401155e

Browse files
committed
fixup! docs: fix all brokens links on the API pages
1 parent f13678e commit 401155e

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

packages/animations/src/animation_metadata.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ export function trigger(name: string, definitions: AnimationMetadata[]): Animati
636636
* @returns An object that encapsulates the animation step.
637637
*
638638
* @usageNotes
639-
* Call within an animation `sequence()`, [`group()`](/api/animations/group), or
639+
* Call within an animation `sequence()`, {@link /api/animations/group group()}, or
640640
* `transition()` call to specify an animation step
641641
* that applies given style data to the parent animation for a given amount of time.
642642
*
@@ -740,10 +740,10 @@ export function group(
740740
* @usageNotes
741741
* When you pass an array of steps to a
742742
* `transition()` call, the steps run sequentially by default.
743-
* Compare this to the [`group()`](/api/animations/group) call, which runs animation steps in
743+
* Compare this to the {@link /api/animations/group group()} call, which runs animation steps in
744744
*parallel.
745745
*
746-
* When a sequence is used within a [`group()`](/api/animations/group) or a `transition()` call,
746+
* When a sequence is used within a {@link /api/animations/group group()} or a `transition()` call,
747747
* execution continues to the next instruction only after each of the inner animation
748748
* steps have completed.
749749
*

packages/core/src/render3/view_ref.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export class ViewRef<T> implements EmbeddedViewRef<T>, ChangeDetectorRefInterfac
185185
*
186186
* Detached views will not be checked during change detection runs until they are
187187
* re-attached, even if they are dirty. `detach` can be used in combination with
188-
* {@link ChangeDetectorRef#detectChanges} to implement local change to implement local change
188+
* {@link ChangeDetectorRef#detectChanges} to implement local change
189189
* detection checks.
190190
*
191191
* <!-- TODO: Add a link to a chapter on detach/reattach/local digest -->

packages/service-worker/src/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {
2020
* Subscribe to update notifications from the Service Worker, trigger update
2121
* checks, and forcibly activate updates.
2222
*
23-
* @see [Service Worker Communication Guide](/ecosystem/service-workers/communications)
23+
* @see {@link /ecosystem/service-workers/communications Service Worker Communication Guide}
2424
*
2525
* @publicApi
2626
*/

packages/upgrade/src/common/src/downgrade_component.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,9 @@ import {
7878
* <br />
7979
* (This option is only necessary when using `downgradeModule()` to downgrade more than one
8080
* Angular module.)
81-
* - `propagateDigest?: boolean`: Whether to perform [`detectChanges`](/api/core/ChangeDetectorRef#detectChanges) on the
82-
* component on every
83-
* [$digest](https://docs.angularjs.org/api/ng/type/$rootScope.Scope#$digest). If set to `false`,
84-
* change detection will still be performed when any of the component's inputs changes.
81+
* - `propagateDigest?: boolean`: Whether to perform {@link /api/core/ChangeDetectorRef#detectChanges detectChanges} on the
82+
* component on every {@link https://docs.angularjs.org/api/ng/type/$rootScope.Scope#$digest $digest}.
83+
* If set to `false`, change detection will still be performed when any of the component's inputs changes.
8584
* (Default: true)
8685
*
8786
* @returns a factory function that can be used to register the component in an

0 commit comments

Comments
 (0)