From d8ecae53ed006b1461f4f99231f6d170a57628ab Mon Sep 17 00:00:00 2001
From: lyuxuan <yuxuanli@google.com>
Date: Mon, 16 Jul 2018 15:44:40 -0700
Subject: [PATCH] transport.go: minor typo fix (#2225)

---
 internal/transport/transport.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/internal/transport/transport.go b/internal/transport/transport.go
index 192f55a5..aaa62a7a 100644
--- a/internal/transport/transport.go
+++ b/internal/transport/transport.go
@@ -261,7 +261,7 @@ func (s *Stream) SetSendCompress(str string) {
 	s.sendCompress = str
 }
 
-// Done returns a chanel which is closed when it receives the final status
+// Done returns a channel which is closed when it receives the final status
 // from the server.
 func (s *Stream) Done() <-chan struct{} {
 	return s.done