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;