From 40b16d00a2e91d114767c5d2b62d463bf91aceac Mon Sep 17 00:00:00 2001 From: Igor Silvestre Date: Sat, 15 Nov 2025 21:19:03 -0300 Subject: [PATCH] Correct comment in Accept function Fix duplicate word in comment for Accept function --- accept.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accept.go b/accept.go index cc990428..bcfd38e8 100644 --- a/accept.go +++ b/accept.go @@ -90,7 +90,7 @@ func (opts *AcceptOptions) cloneWithDefaults() *AcceptOptions { } // Accept accepts a WebSocket handshake from a client and upgrades the -// the connection to a WebSocket. +// connection to a WebSocket. // // Accept will not allow cross origin requests by default. // See the InsecureSkipVerify and OriginPatterns options to allow cross origin requests.