aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/generic
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2017-05-10 15:19:01 -0700
committerGravatar Alexander Polcyn <apolcyn@google.com>2017-05-10 15:39:58 -0700
commit41ff2e1ee6afc5373a60edc19b5c477e10a429b2 (patch)
tree9ad17a9a4be7873126a47ca623a81b29beb8c0ed /include/grpc++/generic
parent0f02908e67d637acfff579c2a97be20ebfca1b00 (diff)
address comments, format changes
Diffstat (limited to 'include/grpc++/generic')
-rw-r--r--include/grpc++/generic/generic_stub.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/grpc++/generic/generic_stub.h b/include/grpc++/generic/generic_stub.h
index fdd2377204..1478846fc8 100644
--- a/include/grpc++/generic/generic_stub.h
+++ b/include/grpc++/generic/generic_stub.h
@@ -50,11 +50,11 @@ class GenericStub final {
explicit GenericStub(std::shared_ptr<ChannelInterface> channel)
: channel_(channel) {}
- /// Begin a call to a named method \a method usign \a context.
- /// A tag \a tag will be deliever to \a cq when the call has been started
+ /// Begin a call to a named method \a method using \a context.
+ /// A tag \a tag will be delivered to \a cq when the call has been started
/// (i.e, initial metadata has been sent).
/// The return value only indicates whether or not registration of the call
- /// succeeded (i.e. the call won't proceed if the return value is 0).
+ /// succeeded (i.e. the call won't proceed if the return value is nullptr).
std::unique_ptr<GenericClientAsyncReaderWriter> Call(
ClientContext* context, const grpc::string& method, CompletionQueue* cq,
void* tag);