From 8bf6dd28ef54e75c9e6e0ea90547f6d4e5e75795 Mon Sep 17 00:00:00 2001 From: Igor Silvestre Date: Mon, 17 Nov 2025 06:12:40 -0300 Subject: [PATCH] chore: fix typo in Accept function (#544) --- 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.