diff --git a/plugins/rollbar-backend/src/service/router.test.ts b/plugins/rollbar-backend/src/service/router.test.ts index f5dc2f1c3d..c3f1c73e09 100644 --- a/plugins/rollbar-backend/src/service/router.test.ts +++ b/plugins/rollbar-backend/src/service/router.test.ts @@ -106,7 +106,7 @@ describe('createRouter', () => { level: 50, occurrences: 100, projectId: 12345, - title: 'error occured', + title: 'error occurred', uniqueOccurrences: 10, }, counts: [10, 10, 10, 10, 10, 50], diff --git a/plugins/rollbar/src/components/RollbarProjectPage/RollbarProjectPage.test.tsx b/plugins/rollbar/src/components/RollbarProjectPage/RollbarProjectPage.test.tsx index ad3d4a554d..a1c54dfd5a 100644 --- a/plugins/rollbar/src/components/RollbarProjectPage/RollbarProjectPage.test.tsx +++ b/plugins/rollbar/src/components/RollbarProjectPage/RollbarProjectPage.test.tsx @@ -40,7 +40,7 @@ describe('RollbarProjectPage component', () => { level: 50, occurrences: 100, projectId: 12345, - title: 'error occured', + title: 'error occurred', uniqueOccurrences: 10, }, counts: [10, 10, 10, 10, 10, 50], diff --git a/plugins/scaffolder-backend/src/scaffolder/jobs/processor.ts b/plugins/scaffolder-backend/src/scaffolder/jobs/processor.ts index f1dbb24dd7..25f9b23e59 100644 --- a/plugins/scaffolder-backend/src/scaffolder/jobs/processor.ts +++ b/plugins/scaffolder-backend/src/scaffolder/jobs/processor.ts @@ -117,7 +117,7 @@ export class JobProcessor implements Processor { // Complete the current stage stage.status = 'COMPLETED'; } catch (error) { - // Log to the current stage the error that occured and fail the stage. + // Log to the current stage the error that occurred and fail the stage. stage.status = 'FAILED'; logger.error(`Stage failed with error: ${error.message}`);