1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-28 15:32:20 +00:00

Merge pull request #197 from fuwensun/pr4-3-2d

ch4-03-修正一个表达
This commit is contained in:
chai2010 2018-07-16 17:06:25 +08:00 committed by GitHub
commit 406fa45681
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,7 @@ func (call *Call) done() {
}
```
`Call.done`方法的实现可以得知`call.Done`管道会将输入的call原样返回。
`Call.done`方法的实现可以得知`call.Done`管道会将处理后的的call返回。
## 基于RPC实现Watch功能