aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar kpayson64 <kpayson@google.com>2016-07-14 08:23:07 -0700
committerGravatar GitHub <noreply@github.com>2016-07-14 08:23:07 -0700
commit57e89b08d493b76c5167a6ab431b2ad945e1e0e4 (patch)
tree98895a0a54302f409db736b4b51bc5a334e74140 /src
parenta5293000534deca9e4d67a323c3b369055615022 (diff)
parentc41f81aeeb054ec436934c7cc1afeb1dee0a8581 (diff)
Merge pull request #7378 from kpayson64/py_doc_touchup
Document rpc details as string type
Diffstat (limited to 'src')
-rw-r--r--src/python/grpcio/grpc/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/grpcio/grpc/__init__.py b/src/python/grpcio/grpc/__init__.py
index fd015129f0..513839df7d 100644
--- a/src/python/grpcio/grpc/__init__.py
+++ b/src/python/grpcio/grpc/__init__.py
@@ -345,7 +345,7 @@ class Call(six.with_metaclass(abc.ABCMeta, RpcContext)):
This method blocks until the value is available.
Returns:
- The bytes of the details of the RPC.
+ The details string of the RPC.
"""
raise NotImplementedError()
@@ -764,7 +764,7 @@ class ServicerContext(six.with_metaclass(abc.ABCMeta, RpcContext)):
details to transmit.
Args:
- details: The details bytes of the RPC to be transmitted to
+ details: The details string of the RPC to be transmitted to
the invocation side of the RPC.
"""
raise NotImplementedError()