Skip to content

Commit

Permalink
missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
achiash committed Oct 24, 2013
1 parent cf18789 commit 43f3436
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/simple.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ MongoClient.connect(format("mongodb://%s:%s/node-mongo-examples?w=1", host, port
collection.find().each(function(err, item) { collection.find().each(function(err, item) {
if(item != null) { if(item != null) {
console.dir(item); console.dir(item);
console.log("created at " + new Date(item._id.generationTime) + "\n") console.log("created at " + new Date(item._id.generationTime) + "\n");
} }


// Null signifies end of iterator // Null signifies end of iterator
Expand All @@ -36,4 +36,4 @@ MongoClient.connect(format("mongodb://%s:%s/node-mongo-examples?w=1", host, port
}); });
}); });
}); });
}); });

0 comments on commit 43f3436

Please sign in to comment.