mirror of https://github.com/grpc/grpc-node.git
Merge pull request #1265 from litichevskiydv/patch-1
Message parameter removing from cancel requester description
This commit is contained in:
commit
2a9d55f8a0
|
@ -51,7 +51,7 @@
|
||||||
* `halfClose(next)`
|
* `halfClose(next)`
|
||||||
* * To continue, call next().
|
* * To continue, call next().
|
||||||
*
|
*
|
||||||
* `cancel(message, next)`
|
* `cancel(next)`
|
||||||
* * To continue, call next().
|
* * To continue, call next().
|
||||||
*
|
*
|
||||||
* A listener is a POJO with one or more of the following methods:
|
* A listener is a POJO with one or more of the following methods:
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
* halfClose: function(next) {
|
* halfClose: function(next) {
|
||||||
* next();
|
* next();
|
||||||
* },
|
* },
|
||||||
* cancel: function(message, next) {
|
* cancel: function(next) {
|
||||||
* next();
|
* next();
|
||||||
* }
|
* }
|
||||||
* });
|
* });
|
||||||
|
|
Loading…
Reference in New Issue