From f3fdd259c184462b22de5575aba8b065a2dc8733 Mon Sep 17 00:00:00 2001 From: kerbalwzy Date: Sun, 15 Sep 2019 15:12:45 +0800 Subject: [PATCH 1/2] Fix: fix the wrong word and delete line number description --- examples/python/data_transmission/README.cn.md | 16 ++++++++-------- examples/python/data_transmission/README.en.md | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/examples/python/data_transmission/README.cn.md b/examples/python/data_transmission/README.cn.md index 812a8bbb7d6..aba773f2844 100644 --- a/examples/python/data_transmission/README.cn.md +++ b/examples/python/data_transmission/README.cn.md @@ -6,31 +6,31 @@ 在一次调用中, 客户端只能向服务器传输一次请求数据, 服务器也只能返回一次响应 - `client.py - line:14 - simple_method` + `client.py : simple_method` - `server.py - line:17 - SimpleMethod` + `server.py : SimpleMethod` - #### 客户端流模式 在一次调用中, 客户端可以多次向服务器传输数据, 但是服务器只能返回一次响应 - `clien.py - line:27 - client_streaming_method ` + `client.py : client_streaming_method ` - `server.py - line:28 - ClientStreamingMethod` + `server.py : ClientStreamingMethod` - #### 服务端流模式 在一次调用中, 客户端只能向服务器传输一次请求数据, 但是服务器可以多次返回响应 - `clien.py - line:48 - server_streaming_method` + `client.py : server_streaming_method` - `server.py - line:41 - ServerStreamingMethod` + `server.py : ServerStreamingMethod` - #### 双向流模式 在一次调用中, 客户端和服务器都可以向对方多次收发数据 - `client.py - line:63 - bidirectional_streaming_method` + `client.py : bidirectional_streaming_method` - `server.py - line:59 - BidirectionalStreamingMethod` + `server.py : BidirectionalStreamingMethod` diff --git a/examples/python/data_transmission/README.en.md b/examples/python/data_transmission/README.en.md index 659ee1b93fb..6258e40e960 100644 --- a/examples/python/data_transmission/README.en.md +++ b/examples/python/data_transmission/README.en.md @@ -6,32 +6,32 @@ Four ways of data transmission when gRPC is used in Python. [Offical Guide]( Date: Tue, 17 Sep 2019 09:37:56 +0800 Subject: [PATCH 2/2] Fix: remove the space on the left of colons --- examples/python/data_transmission/README.cn.md | 16 ++++++++-------- examples/python/data_transmission/README.en.md | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/examples/python/data_transmission/README.cn.md b/examples/python/data_transmission/README.cn.md index aba773f2844..ecffa5d3877 100644 --- a/examples/python/data_transmission/README.cn.md +++ b/examples/python/data_transmission/README.cn.md @@ -6,31 +6,31 @@ 在一次调用中, 客户端只能向服务器传输一次请求数据, 服务器也只能返回一次响应 - `client.py : simple_method` + `client.py: simple_method` - `server.py : SimpleMethod` + `server.py: SimpleMethod` - #### 客户端流模式 在一次调用中, 客户端可以多次向服务器传输数据, 但是服务器只能返回一次响应 - `client.py : client_streaming_method ` + `client.py: client_streaming_method ` - `server.py : ClientStreamingMethod` + `server.py: ClientStreamingMethod` - #### 服务端流模式 在一次调用中, 客户端只能向服务器传输一次请求数据, 但是服务器可以多次返回响应 - `client.py : server_streaming_method` + `client.py: server_streaming_method` - `server.py : ServerStreamingMethod` + `server.py: ServerStreamingMethod` - #### 双向流模式 在一次调用中, 客户端和服务器都可以向对方多次收发数据 - `client.py : bidirectional_streaming_method` + `client.py: bidirectional_streaming_method` - `server.py : BidirectionalStreamingMethod` + `server.py: BidirectionalStreamingMethod` diff --git a/examples/python/data_transmission/README.en.md b/examples/python/data_transmission/README.en.md index 6258e40e960..d9639290549 100644 --- a/examples/python/data_transmission/README.en.md +++ b/examples/python/data_transmission/README.en.md @@ -6,32 +6,32 @@ Four ways of data transmission when gRPC is used in Python. [Offical Guide](