From f0eb0cddef8ee62c8fcbcb8ea78cae880cf0aeef Mon Sep 17 00:00:00 2001 From: fetsorn Date: Wed, 12 Mar 2025 20:34:27 +0300 Subject: [PATCH] Fix typo in cors.go Signed-off-by: fetsorn --- cors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cors.go b/cors.go index 8af9c09..b05e72b 100644 --- a/cors.go +++ b/cors.go @@ -253,7 +253,7 @@ func AllowedOriginValidator(fn OriginValidator) CORSOption { } // OptionStatusCode sets a custom status code on the OPTIONS requests. -// Default behaviour sets it to 200 to reflect best practices. This is option is not mandatory +// Default behaviour sets it to 200 to reflect best practices. This option is not mandatory // and can be used if you need a custom status code (i.e 204). // // More informations on the spec: