From 2899844430ddc3ae3c244fead67c0472f04d03ac Mon Sep 17 00:00:00 2001 From: iamqizhao Date: Fri, 25 Sep 2015 13:38:17 -0700 Subject: [PATCH] fix a typo --- clientconn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientconn.go b/clientconn.go index 1cf0a4c1..7186a23d 100644 --- a/clientconn.go +++ b/clientconn.go @@ -205,7 +205,7 @@ func (cc *ClientConn) State() ConnectivityState { // WaitForStateChange blocks until the state changes to something other than the sourceState // or timeout fires on cc. It returns false if timeout fires, and true otherwise. -// This is EXPERIEMENTAL API. +// This is EXPERIMENTAL API. func (cc *ClientConn) WaitForStateChange(timeout time.Duration, sourceState ConnectivityState) bool { return cc.picker.WaitForStateChange(timeout, sourceState) }