From 2dd771c49e5744edf068f3109af6eae27221b769 Mon Sep 17 00:00:00 2001 From: Ryo Nakao Date: Thu, 27 Sep 2018 11:02:34 +0900 Subject: [PATCH] fix typo in InvokeRpc() comment (#50) --- grpcurl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grpcurl.go b/grpcurl.go index 004dc1f..6a33103 100644 --- a/grpcurl.go +++ b/grpcurl.go @@ -323,7 +323,7 @@ type InvocationEventHandler interface { // the supplier has no more messages, it should return nil, io.EOF. type RequestMessageSupplier func() ([]byte, error) -// InvokeRpc uses te given GRPC connection to invoke the given method. The given descriptor source +// InvokeRpc uses the given GRPC connection to invoke the given method. The given descriptor source // is used to determine the type of method and the type of request and response message. The given // headers are sent as request metadata. Methods on the given event handler are called as the // invocation proceeds.