From c7052154d58d1c9dcaeaa94ef8f6a1fbd2a7272f Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sat, 18 Dec 2021 15:11:01 -0800 Subject: [PATCH] net/dns/resolver: fix the subject in a func comment Change-Id: I519268c20dbd2c2da92da565839d3c1c84612dcc Signed-off-by: Brad Fitzpatrick --- net/dns/resolver/forwarder.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/dns/resolver/forwarder.go b/net/dns/resolver/forwarder.go index 2af3d8c8a..fb75793b9 100644 --- a/net/dns/resolver/forwarder.go +++ b/net/dns/resolver/forwarder.go @@ -576,8 +576,8 @@ func (f *forwarder) forward(query packet) error { return f.forwardWithDestChan(ctx, query, f.responses) } -// forward forwards the query to all upstream nameservers and waits -// for the first response. +// forwardWithDestChan forwards the query to all upstream nameservers +// and waits for the first response. // // It either sends to responseChan and returns nil, or returns a // non-nil error (without sending to the channel).