Skip to content

Commit

Permalink
docs: fix see also links. (#51379)
Browse files Browse the repository at this point in the history
These were all the @see with no links.

PR Close #51379
  • Loading branch information
JeanMeche authored and AndrewKushnir committed Aug 17, 2023
1 parent 4a24923 commit bd4d2bb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions packages/core/src/application_ref.ts
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ export function getPlatform(): PlatformRef|null {
*
* @publicApi
*
* @see provideZoneChangeDetection
* @see {@link provideZoneChangeDetection}
*/
export interface NgZoneOptions {
/**
Expand Down Expand Up @@ -1290,8 +1290,8 @@ export function internalProvideZoneChangeDetection(ngZoneFactory: () => NgZone):
* ```
*
* @publicApi
* @see bootstrapApplication
* @see NgZoneOptions
* @see {@link bootstrapApplication}
* @see {@link NgZoneOptions}
*/
export function provideZoneChangeDetection(options?: NgZoneOptions): EnvironmentProviders {
const zoneProviders =
Expand Down
4 changes: 2 additions & 2 deletions packages/core/testing/src/test_bed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export interface TestBed {
/**
* Runs the given function in the `EnvironmentInjector` context of `TestBed`.
*
* @see EnvironmentInjector#runInContext
* @see {@link EnvironmentInjector#runInContext}
*/
runInInjectionContext<T>(fn: () => T): T;

Expand Down Expand Up @@ -335,7 +335,7 @@ export class TestBedImpl implements TestBed {
/**
* Runs the given function in the `EnvironmentInjector` context of `TestBed`.
*
* @see EnvironmentInjector#runInContext
* @see {@link EnvironmentInjector#runInContext}
*/
static runInInjectionContext<T>(fn: () => T): T {
return TestBedImpl.INSTANCE.runInInjectionContext(fn);
Expand Down
2 changes: 1 addition & 1 deletion packages/forms/src/directives/control_value_accessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {Directive, ElementRef, InjectionToken, Renderer2} from '@angular/core';
* Implement this interface to create a custom form control directive
* that integrates with Angular forms.
*
* @see DefaultValueAccessor
* @see {@link DefaultValueAccessor}
*
* @publicApi
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/platform-browser/src/hydration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {RuntimeErrorCode} from './errors';

/**
* The list of features as an enum to uniquely type each `HydrationFeature`.
* @see HydrationFeature
* @see {@link HydrationFeature}
*
* @publicApi
* @developerPreview
Expand Down
2 changes: 1 addition & 1 deletion packages/router/src/directives/router_link_active.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class RouterLinkActive implements OnChanges, OnDestroy, AfterContentInit
*
* These options are passed to the `Router.isActive()` function.
*
* @see Router.isActive
* @see {@link Router#isActive}
*/
@Input() routerLinkActiveOptions: {exact: boolean}|IsActiveMatchOptions = {exact: false};

Expand Down
2 changes: 1 addition & 1 deletion packages/router/src/url_tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {equalArraysOrString, shallowEqual} from './utils/collection';
* for the current router state.
*
* @publicApi
* @see Router.isActive
* @see {@link Router#isActive}
*/
export interface IsActiveMatchOptions {
/**
Expand Down

0 comments on commit bd4d2bb

Please sign in to comment.