Remove mystery variable in examples

fork
Brian White 12 years ago
parent 4960a8581a
commit 56f7e5953a

@ -70,7 +70,7 @@ Example
}); });
fetch.on('end', function() { fetch.on('end', function() {
console.log('Done fetching all messages!'); console.log('Done fetching all messages!');
imap.logout(cb); imap.logout();
}); });
}); });
}); });
@ -106,7 +106,7 @@ Example
}); });
fetch.on('end', function() { fetch.on('end', function() {
console.log('Done fetching all messages!'); console.log('Done fetching all messages!');
imap.logout(cb); imap.logout();
}); });
}); });
``` ```
@ -142,7 +142,7 @@ Example
}); });
fetch.on('end', function() { fetch.on('end', function() {
console.log('Done fetching all messages!'); console.log('Done fetching all messages!');
imap.logout(cb); imap.logout();
}); });
}); });
}); });
@ -177,7 +177,7 @@ Example
}); });
fetch.on('end', function() { fetch.on('end', function() {
console.log('Done fetching all messages!'); console.log('Done fetching all messages!');
imap.logout(cb); imap.logout();
}); });
}); });
}); });

Loading…
Cancel
Save