From 56f7e5953a752e275b987224c51e3dab78bce9b4 Mon Sep 17 00:00:00 2001 From: Brian White Date: Sat, 15 Sep 2012 20:59:21 -0400 Subject: [PATCH] Remove mystery variable in examples --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6630140..71fa0d1 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Example }); fetch.on('end', function() { console.log('Done fetching all messages!'); - imap.logout(cb); + imap.logout(); }); }); }); @@ -106,7 +106,7 @@ Example }); fetch.on('end', function() { console.log('Done fetching all messages!'); - imap.logout(cb); + imap.logout(); }); }); ``` @@ -142,7 +142,7 @@ Example }); fetch.on('end', function() { console.log('Done fetching all messages!'); - imap.logout(cb); + imap.logout(); }); }); }); @@ -177,7 +177,7 @@ Example }); fetch.on('end', function() { console.log('Done fetching all messages!'); - imap.logout(cb); + imap.logout(); }); }); });