Skip to content

Commit

Permalink
docs: remove trailing periods after @see (#51144)
Browse files Browse the repository at this point in the history
This fixes a rendering issue where the periods would be bellow the text block.

PR Close #51144
  • Loading branch information
JeanMeche authored and AndrewKushnir committed Jul 24, 2023
1 parent 92ebfd1 commit daaa0a4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion packages/common/src/i18n/locale_data_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {CURRENCIES_EN, CurrenciesSymbols} from './currencies';

/**
* Format styles that can be used to represent numbers.
* @see {@link getLocaleNumberFormat}.
* @see {@link getLocaleNumberFormat}
* @see [Internationalization (i18n) Guide](/guide/i18n-overview)
*
* @publicApi
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/di/interface/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export interface FactoryProvider extends FactorySansProvider {
* Describes how an `Injector` should be configured as static (that is, without reflection).
* A static provider provides tokens to an injector for various types of dependencies.
*
* @see {@link Injector.create()}.
* @see {@link Injector.create()}
* @see ["Dependency Injection Guide"](guide/dependency-injection-providers).
*
* @publicApi
Expand Down
14 changes: 7 additions & 7 deletions packages/core/src/metadata/di.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ export const emitDistinctChangesOnlyDefaultValue = true;
/**
* Base class for query metadata.
*
* @see {@link ContentChildren}.
* @see {@link ContentChild}.
* @see {@link ViewChildren}.
* @see {@link ViewChild}.
* @see {@link ContentChildren}
* @see {@link ContentChild}
* @see {@link ViewChildren}
* @see {@link ViewChild}
*
* @publicApi
*/
Expand All @@ -87,7 +87,7 @@ export abstract class Query {}
/**
* Type of the ContentChildren decorator / constructor function.
*
* @see {@link ContentChildren}.
* @see {@link ContentChildren}
* @publicApi
*/
export interface ContentChildrenDecorator {
Expand Down Expand Up @@ -274,7 +274,7 @@ export const ContentChild: ContentChildDecorator = makePropDecorator(
/**
* Type of the ViewChildren decorator / constructor function.
*
* @see {@link ViewChildren}.
* @see {@link ViewChildren}
*
* @publicApi
*/
Expand Down Expand Up @@ -363,7 +363,7 @@ export const ViewChildren: ViewChildrenDecorator = makePropDecorator(
/**
* Type of the ViewChild decorator / constructor function.
*
* @see {@link ViewChild}.
* @see {@link ViewChild}
* @publicApi
*/
export interface ViewChildDecorator {
Expand Down
2 changes: 1 addition & 1 deletion packages/router/src/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ export class ResolveStart extends RouterEvent {

/**
* An event triggered at the end of the Resolve phase of routing.
* @see {@link ResolveStart}.
* @see {@link ResolveStart}
*
* @publicApi
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/router/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export type Data = {
*
* Represents the resolved data associated with a particular route.
*
* @see {@link Route#resolve}.
* @see {@link Route#resolve}
*
* @publicApi
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/router/src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const subsetMatchOptions: IsActiveMatchOptions = {
*
* A service that provides navigation among views and URL manipulation capabilities.
*
* @see {@link Route}.
* @see {@link Route}
* @see [Routing and Navigation Guide](guide/router).
*
* @ngModule RouterModule
Expand Down

0 comments on commit daaa0a4

Please sign in to comment.