Merge pull request #1265 from litichevskiydv/patch-1

Message parameter removing from cancel requester description
This commit is contained in:
Michael Lumish 2020-02-18 14:32:58 -08:00 committed by GitHub
commit 2a9d55f8a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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();
* } * }
* }); * });