From 59958e5282a330b9cf049128149f95884bf1ec7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B8=82=E5=B7=9D=E6=81=AD=E4=BD=91=20=28ebi=29?= <44393661+ebi-yade@users.noreply.github.com> Date: Sun, 2 Jan 2022 16:10:01 +0900 Subject: [PATCH] fix typo *connections (#3309) --- http3/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http3/server.go b/http3/server.go index ce5bc909f..2ae3fef5a 100644 --- a/http3/server.go +++ b/http3/server.go @@ -486,7 +486,7 @@ func ListenAndServeQUIC(addr, certFile, keyFile string, handler http.Handler) er } // ListenAndServe listens on the given network address for both, TLS and QUIC -// connetions in parallel. It returns if one of the two returns an error. +// connections in parallel. It returns if one of the two returns an error. // http.DefaultServeMux is used when handler is nil. // The correct Alt-Svc headers for QUIC are set. func ListenAndServe(addr, certFile, keyFile string, handler http.Handler) error {