Skip to content

Commit c747360

Browse files
committed
Fix a few warnings.
1 parent 4a5aa47 commit c747360

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

apps/api-documenter/src/plugin/IApiDocumenterPluginManifest.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import { PluginFeatureInitialization } from './PluginFeature';
77
/**
88
* Defines a "feature" that is provided by an API Documenter plugin. A feature is a user-defined module
99
* that customizes the behavior of API Documenter.
10+
*
11+
* @public
1012
*/
1113
export interface IFeatureDefinition {
1214
/**
@@ -58,6 +60,7 @@ export interface IFeatureDefinition {
5860
* ]
5961
* };
6062
* ```
63+
* @public
6164
*/
6265
export interface IApiDocumenterPluginManifest {
6366
/**

apps/rush-lib/src/api/Rush.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class Rush {
4646
*
4747
* @remarks
4848
* Earlier versions of the rush frontend used a different API contract. In the old contract,
49-
* the second argument was the `isManaged` value of the {@see ILaunchOptions} object.
49+
* the second argument was the `isManaged` value of the {@link ILaunchOptions} object.
5050
*
5151
* Even though this API isn't documented, it is still supported for legacy compatibility.
5252
*/
@@ -91,7 +91,7 @@ export class Rush {
9191
}
9292

9393
/**
94-
* This function normalizes legacy options to the current {@see ILaunchOptions} object.
94+
* This function normalizes legacy options to the current {@link ILaunchOptions} object.
9595
*/
9696
private static _normalizeLaunchOptions(arg: ILaunchOptions): ILaunchOptions {
9797
return (typeof arg === 'boolean')

0 commit comments

Comments
 (0)