ソースを参照

Merge pull request #7806 from nathanielmanistaatgoogle/secure_channel-doc-string

Python grpc.secure_channel doc string correction
kpayson64 9 年 前
コミット
e5a17ec0aa
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/python/grpcio/grpc/__init__.py

+ 1 - 1
src/python/grpcio/grpc/__init__.py

@@ -1193,7 +1193,7 @@ def insecure_channel(target, options=None):
 
 
 
 
 def secure_channel(target, credentials, options=None):
 def secure_channel(target, credentials, options=None):
-  """Creates an insecure Channel to a server.
+  """Creates a secure Channel to a server.
 
 
   Args:
   Args:
     target: The target to which to connect.
     target: The target to which to connect.