From c93644d0e2188a0e6db20f5bbd67ae2d2543529f Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Thu, 26 Aug 2021 21:37:37 +0900 Subject: [PATCH] chore: Fix typo in status.ts ocurred -> occurred --- packages/types/src/status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/status.ts b/packages/types/src/status.ts index c490be6f41d9..0df44d10a3f3 100644 --- a/packages/types/src/status.ts +++ b/packages/types/src/status.ts @@ -11,7 +11,7 @@ export enum Status { RateLimit = 'rate_limit', /** The event could not be processed. */ Invalid = 'invalid', - /** A server-side error ocurred during submission. */ + /** A server-side error occurred during submission. */ Failed = 'failed', }