fix: Comment typos

Signed-off-by: Adam Harvey <adaharve@cisco.com>
This commit is contained in:
Adam Harvey
2023-04-29 13:53:35 -04:00
parent bd58c70485
commit 23e45c47d0
2 changed files with 2 additions and 2 deletions
@@ -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('/') ||
@@ -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<void>;