From 12da02619462d233b63694c45e28fa98876d387d Mon Sep 17 00:00:00 2001 From: Thomas Meson Date: Wed, 21 Feb 2018 19:14:52 +0100 Subject: [PATCH] clientconn: fix a typo in GetMethodConfig documentation (#1867) --- clientconn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientconn.go b/clientconn.go index 0c59c988..6c0ec627 100644 --- a/clientconn.go +++ b/clientconn.go @@ -865,7 +865,7 @@ func (ac *addrConn) tryUpdateAddrs(addrs []resolver.Address) bool { // the corresponding MethodConfig. // If there isn't an exact match for the input method, we look for the default config // under the service (i.e /service/). If there is a default MethodConfig for -// the serivce, we return it. +// the service, we return it. // Otherwise, we return an empty MethodConfig. func (cc *ClientConn) GetMethodConfig(method string) MethodConfig { // TODO: Avoid the locking here.