From 9778865e4f0406717695f54605c0c4383fd33476 Mon Sep 17 00:00:00 2001 From: Louis Chatriot Date: Tue, 19 Jan 2016 01:55:53 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a62597..d7a3161 100755 --- a/README.md +++ b/README.md @@ -590,7 +590,7 @@ db.removeIndex('somefield', function (err) { }); // Example of using expireAfterSeconds to remove documents 1 hour -// after their creation (timestampData option is true here) +// after their creation (db's timestampData option is true here) db.ensureIndex({ fieldName: 'createdAt', expireAfterSeconds: 3600 }, function (err) { }); ```