Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const FunctionForm: React.FunctionComponent<FunctionFormProps> = (props)
context={
context ?? {
state: 'error',
error: 'Error occured',
error: 'Error occurred',
value: expressionType,
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function parseAndValidate(file: string) {
throw new Error(
i18n.translate('xpack.ingestPipelines.mapToIngestPipeline.error.parseErrors', {
defaultMessage:
'Error reading file: An unexpected issue has occured during the processing of the file.',
'Error reading file: An unexpected issue has occurred during the processing of the file.',
})
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function InsightError() {
iconType="error"
>
{i18n.translate('xpack.observabilityAiAssistant.insight.error.description', {
defaultMessage: 'An error occured.',
defaultMessage: 'An error occurred.',
})}

<EuiSpacer size="m" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ export const permissionsPolicyViolationReportSchema = schema.object(
*/
featureId: schema.maybe(schema.string()),
/**
* If known, the file where the violation occured, or null otherwise.
* If known, the file where the violation occurred, or null otherwise.
*/
sourceFile: schema.maybe(schema.string()),
/**
* If known, the line number in sourceFile where the violation occured, or null otherwise.
* If known, the line number in sourceFile where the violation occurred, or null otherwise.
*/
lineNumber: schema.maybe(schema.number()),
/**
* If known, the column number in sourceFile where the violation occured, or null otherwise.
* If known, the column number in sourceFile where the violation occurred, or null otherwise.
*/
columnNumber: schema.maybe(schema.number()),
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ export class TaskStore {
];
} catch (e) {
this.logger.error(
`[TaskStore] An error occured. Task ${taskInstance.id} will not be updated. Error: ${e.message}`
`[TaskStore] An error occurred. Task ${taskInstance.id} will not be updated. Error: ${e.message}`
);
return acc;
}
Expand Down Expand Up @@ -709,7 +709,7 @@ export class TaskStore {
});
} catch (e) {
this.logger.error(
`[TaskStore] An error occured. Task ${doc.id} will not be updated. Error: ${e.message}`
`[TaskStore] An error occurred. Task ${doc.id} will not be updated. Error: ${e.message}`
);
}
return acc;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function ErrorStatePrompt() {
title={
<div>
{i18n.translate('xpack.apm.error.prompt.title', {
defaultMessage: `Sorry, an error occured :(`,
defaultMessage: `Sorry, an error occurred :(`,
})}
</div>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const ERROR_MESSAGES = {
body: (
<FormattedMessage
id="xpack.search.synonyms.errorDescription"
defaultMessage="An error occured while fetching synonyms. Check Kibana logs for more information."
defaultMessage="An error occurred while fetching synonyms. Check Kibana logs for more information."
/>
),
},
Expand Down
Loading