diff --git a/src/sentry/sentry_apps/utils/errors.py b/src/sentry/sentry_apps/utils/errors.py index 35db6ff8cf3c99..c0192f91372bee 100644 --- a/src/sentry/sentry_apps/utils/errors.py +++ b/src/sentry/sentry_apps/utils/errors.py @@ -51,7 +51,7 @@ def __repr__(self) -> str: return f"{type(self).__name__}: message={self.message} status_code={self.status_code} error_type={self.error_type}" -# Represents a user/client error that occured during a Sentry App process +# Represents a user/client error that occurred during a Sentry App process class SentryAppError(SentryAppBaseError): error_type = SentryAppErrorType.CLIENT status_code = 400 @@ -71,7 +71,7 @@ class SentryAppSentryError(SentryAppBaseError): def to_public_dict(self) -> SentryAppPublicErrorBody: error_id = sentry_sdk.capture_exception(self, level="info") return { - "detail": f"An issue occured during the integration platform process. Sentry error ID: {error_id}" + "detail": f"An issue occurred during the integration platform process. Sentry error ID: {error_id}" } def response_from_exception(self) -> Response: