GH-19: server.del not server.delete in docs

This commit is contained in:
Mark Cavage 2011-09-27 13:17:57 -07:00
parent f4b49a20ae
commit 7ceea2b853
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ No extra methods above an `LDAPResult` API call.
Allows you to handle an LDAP delete operation.
server.delete('o=example', function(req, res, next) {
server.del('o=example', function(req, res, next) {
console.log('DN: ' + req.dn.toString());
res.end();
});