internal/quic/qlog: fix typo

VantageClient -> VantageServer

Change-Id: Ie9738cffb06f03f961815853247e6f9cbe7fe466
GitHub-Last-Rev: 5d440ad29c
GitHub-Pull-Request: golang/net#202
Reviewed-on: https://go-review.googlesource.com/c/net/+/555795
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit: Damien Neil <dneil@google.com>
This commit is contained in:
btwiuse
2024-01-14 13:20:58 +00:00
committed by Gopher Robot
parent 0d0b98c137
commit b2208d046d

View File

@@ -29,7 +29,7 @@ const (
// VantageClient traces follow a connection from the client's perspective.
VantageClient = Vantage("client")
// VantageClient traces follow a connection from the server's perspective.
// VantageServer traces follow a connection from the server's perspective.
VantageServer = Vantage("server")
)