message parameter was removed from cancel requester description

This commit is contained in:
Litichevskiy Dmitriy 2020-02-16 23:02:22 +03:00 committed by GitHub
parent b68ffb20c6
commit 3a95e55786
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)`
* * To continue, call next().
*
* `cancel(message, next)`
* `cancel(next)`
* * To continue, call next().
*
* A listener is a POJO with one or more of the following methods:
@ -109,7 +109,7 @@
* halfClose: function(next) {
* next();
* },
* cancel: function(message, next) {
* cancel: function(next) {
* next();
* }
* });