Merge pull request #16113 from backstage/freben/comments

🧹  just some comment cleanup
This commit is contained in:
Fredrik Adelöw
2023-02-01 14:30:37 +01:00
committed by GitHub
11 changed files with 25 additions and 23 deletions
@@ -43,7 +43,7 @@ import { codeSearch } from '../lib';
* target: https://dev.azure.com/org/project/_git/repo
*
* @public
**/
*/
export class AzureDevOpsDiscoveryProcessor implements CatalogProcessor {
private readonly integrations: ScmIntegrationRegistry;
private readonly logger: Logger;
@@ -123,7 +123,7 @@ export class AzureDevOpsDiscoveryProcessor implements CatalogProcessor {
/**
* parseUrl extracts segments from the Azure DevOps URL.
**/
*/
export function parseUrl(urlString: string): {
baseUrl: string;
org: string;
@@ -46,7 +46,7 @@ import { getOrganizationRepositories } from '../lib';
* target: https://github.com/backstage/*\/blob/main/catalog-info.yaml
*
* @public
**/
*/
export class GithubDiscoveryProcessor implements CatalogProcessor {
private readonly integrations: ScmIntegrationRegistry;
private readonly logger: Logger;
@@ -42,7 +42,7 @@ import { rootRouteRef } from '../../plugin';
/**
* @public
**/
*/
export interface SearchModalChildrenProps {
/**
* A function that should be invoked when navigating away from the modal.
@@ -52,7 +52,7 @@ export interface SearchModalChildrenProps {
/**
* @public
**/
*/
export interface SearchModalProps {
/**
* If true, it renders the modal.
@@ -39,9 +39,8 @@ export class StackOverflowClient implements StackOverflowApi {
}
/**
* List Questions in the StackOverflow instance
*
* */
* List questions in the StackOverflow instance
*/
async listQuestions(options: {
requestParams: StackOverflowQuestionsRequestParams;
}): Promise<StackOverflowQuestion[]> {
+2 -2
View File
@@ -162,7 +162,7 @@ export interface FactRetriever {
* \{ timeToLive: 1209600000 \}
* \{ timeToLive: \{ weeks: 4 \} \}
*
**/
*/
export type TTL = { timeToLive: DurationLike };
/**
@@ -172,7 +172,7 @@ export type TTL = { timeToLive: DurationLike };
* @example
* \{ maxItems: 10 \}
*
**/
*/
export type MaxItems = { maxItems: number };
/**