diff options
author | Nathaniel Manista <nathaniel@google.com> | 2016-08-20 15:34:13 +0000 |
---|---|---|
committer | Nathaniel Manista <nathaniel@google.com> | 2016-08-20 15:34:13 +0000 |
commit | 7a6e30e61c29eeab8c9cae6577d92ff59c1f64f6 (patch) | |
tree | f9316248eab47148a7b2276a3bf0aacd04f7acdd /src/python | |
parent | bbc20b59f8650950cfe6dbf42c1eb0fe12945ca4 (diff) |
Python grpc.secure_channel doc string correction
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/grpcio/grpc/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio/grpc/__init__.py b/src/python/grpcio/grpc/__init__.py index 513839df7d..1cbe93cddd 100644 --- a/src/python/grpcio/grpc/__init__.py +++ b/src/python/grpcio/grpc/__init__.py @@ -1193,7 +1193,7 @@ def insecure_channel(target, options=None): def secure_channel(target, credentials, options=None): - """Creates an insecure Channel to a server. + """Creates a secure Channel to a server. Args: target: The target to which to connect. |