Closed dalgard closed 9 years ago
The README file with the hooks reference contains wrong semantics in the code examples that follow each section from .after.remove onwards.
The examples read test.after.remove: function (userId, doc) { where they should be reading test.after.remove(function (userId, doc) {.
test.after.remove: function (userId, doc) {
test.after.remove(function (userId, doc) {
Thanks for the good work!
Oops... thanks for catching that... I can't believe I've had that mistake in there for so long!
The README file with the hooks reference contains wrong semantics in the code examples that follow each section from .after.remove onwards.
The examples read
test.after.remove: function (userId, doc) {
where they should be readingtest.after.remove(function (userId, doc) {
.Thanks for the good work!