From 68d4f9c160bc1468baa069a552ffd144cb91c378 Mon Sep 17 00:00:00 2001 From: Louis Chatriot Date: Mon, 8 Jul 2013 14:23:55 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc6fb86..81dba5e 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ var Datastore = require('nedb') // Of course you can create multiple datastores if you need several -// collections. For example: +// collections. In this case it's usually a good idea to use autoload for all collections. db = {}; db.users = new Datastore('path/to/users.db'); db.robots = new Datastore('path/to/robots.db');