From bb53047f5497f1a6e38f4784db58e94d7e69fc5c Mon Sep 17 00:00:00 2001 From: flaxinger <70012548+flaxinger@users.noreply.github.com> Date: Mon, 16 Oct 2023 08:55:11 +0000 Subject: [PATCH] internal/nettrace: fix comment typo Change-Id: I23e2bc67476ed1cedf61db9953683e57ab6bf522 GitHub-Last-Rev: 458581ec261eae790fc54537fcecb0fd5915af1e GitHub-Pull-Request: golang/go#63530 Reviewed-on: https://go-review.googlesource.com/c/go/+/535655 Reviewed-by: Ian Lance Taylor Reviewed-by: Yohan Mok Reviewed-by: Than McIntosh Auto-Submit: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI --- src/internal/nettrace/nettrace.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/nettrace/nettrace.go b/src/internal/nettrace/nettrace.go index 0a2bf925e9..7d46268a1c 100644 --- a/src/internal/nettrace/nettrace.go +++ b/src/internal/nettrace/nettrace.go @@ -39,7 +39,7 @@ type Trace struct { // goroutines. ConnectStart func(network, addr string) - // ConnectStart is called after a Dial with the results, excluding + // ConnectDone is called after a Dial with the results, excluding // Dials made during DNS lookups. It may also be called multiple // times, like ConnectStart. ConnectDone func(network, addr string, err error)