From 10e70583f7b18d9ffea837e6276318368c726ac8 Mon Sep 17 00:00:00 2001 From: David Symonds Date: Fri, 12 Feb 2016 15:19:47 +1100 Subject: [PATCH] Fix typo. --- stream.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream.go b/stream.go index 4974d8a82..ea685cc15 100644 --- a/stream.go +++ b/stream.go @@ -71,7 +71,7 @@ type Stream interface { SendMsg(m interface{}) error // RecvMsg blocks until it receives a message or the stream is // done. On client side, it returns io.EOF when the stream is done. On - // any other error, it aborts the streama nd returns an RPC status. On + // any other error, it aborts the stream and returns an RPC status. On // server side, it simply returns the error to the caller. RecvMsg(m interface{}) error }