From 4d58dd98db75e180ebf67cce127db5068ff7ab3e Mon Sep 17 00:00:00 2001 From: Steve Greene Date: Thu, 23 Dec 2021 13:56:58 -0500 Subject: [PATCH] dialoptions.go: Fix WithBlock godoc (#5073) --- dialoptions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialoptions.go b/dialoptions.go index fe2f560d424..c4bf09f9e94 100644 --- a/dialoptions.go +++ b/dialoptions.go @@ -272,7 +272,7 @@ func withBackoff(bs internalbackoff.Strategy) DialOption { }) } -// WithBlock returns a DialOption which makes caller of Dial blocks until the +// WithBlock returns a DialOption which makes callers of Dial block until the // underlying connection is up. Without this, Dial returns immediately and // connecting the server happens in background. func WithBlock() DialOption {