From 23e45c47d09c5b3c25cf68d070a292c25fa4f4df Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Sat, 29 Apr 2023 13:53:35 -0400 Subject: [PATCH] fix: Comment typos Signed-off-by: Adam Harvey --- .../src/scaffolder/actions/builtin/fetch/template.ts | 2 +- .../src/service/fact/FactRetrieverEngine.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/scaffolder-backend/src/scaffolder/actions/builtin/fetch/template.ts b/plugins/scaffolder-backend/src/scaffolder/actions/builtin/fetch/template.ts index 7659cff240..1f80f92334 100644 --- a/plugins/scaffolder-backend/src/scaffolder/actions/builtin/fetch/template.ts +++ b/plugins/scaffolder-backend/src/scaffolder/actions/builtin/fetch/template.ts @@ -324,7 +324,7 @@ function containsSkippedContent(localOutputPath: string): boolean { // if the path is empty means that there is a file skipped in the root // if the path starts with a separator it means that the root directory has been skipped // if the path includes // means that there is a subdirectory skipped - // All paths returned are considered with / seperator because of globby returning the linux seperator for all os'. + // All paths returned are considered with / separator because of globby returning the linux separator for all os'. return ( localOutputPath === '' || localOutputPath.startsWith('/') || diff --git a/plugins/tech-insights-backend/src/service/fact/FactRetrieverEngine.ts b/plugins/tech-insights-backend/src/service/fact/FactRetrieverEngine.ts index e223604829..846871db88 100644 --- a/plugins/tech-insights-backend/src/service/fact/FactRetrieverEngine.ts +++ b/plugins/tech-insights-backend/src/service/fact/FactRetrieverEngine.ts @@ -48,7 +48,7 @@ export interface FactRetrieverEngine { * Schedules fact retriever run cycles based on configuration provided in the registration. * * Default implementation uses backend-tasks to handle scheduling. This function can be called multiple - * times, where initial calls schedule the tasks and subsequents invocations update the schedules. + * times, where initial calls schedule the tasks and subsequent invocations update the schedules. */ schedule(): Promise;