From 22d6b0e626c56f311ff05705042d8caf506e5919 Mon Sep 17 00:00:00 2001 From: Zxilly Date: Sat, 6 May 2023 17:36:43 +0800 Subject: [PATCH] docs: fix typo in documentation for EarlyConnection (#3798) --- interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface.go b/interface.go index 7022cac4..cdab015b 100644 --- a/interface.go +++ b/interface.go @@ -198,7 +198,7 @@ type EarlyConnection interface { // HandshakeComplete blocks until the handshake completes (or fails). // For the client, data sent before completion of the handshake is encrypted with 0-RTT keys. - // For the serfer, data sent before completion of the handshake is encrypted with 1-RTT keys, + // For the server, data sent before completion of the handshake is encrypted with 1-RTT keys, // however the client's identity is only verified once the handshake completes. HandshakeComplete() <-chan struct{}