From: Kevin Burke Date: Fri, 23 Dec 2016 01:21:31 +0000 (-0800) Subject: net: Fix spelling of function name in doc X-Git-Tag: go1.8rc1~54 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=db07c9ecb617117a86364e9e03acd6f7937e1732;p=gostls13.git net: Fix spelling of function name in doc Change-Id: I24c6d312f7d0ce52e1958e8031fc8249af0dfca9 Reviewed-on: https://go-review.googlesource.com/34669 Reviewed-by: Minux Ma --- diff --git a/src/net/dial.go b/src/net/dial.go index b73426fa44..50bba5a49e 100644 --- a/src/net/dial.go +++ b/src/net/dial.go @@ -163,7 +163,7 @@ func parseNetwork(ctx context.Context, net string) (afnet string, proto int, err return "", 0, UnknownNetworkError(net) } -// resolverAddrList resolves addr using hint and returns a list of +// resolveAddrList resolves addr using hint and returns a list of // addresses. The result contains at least one address when error is // nil. func (r *Resolver) resolveAddrList(ctx context.Context, op, network, addr string, hint Addr) (addrList, error) {