From 099bdf1ea8dfdec35c4d2fae65f30cd3cd7b9d59 Mon Sep 17 00:00:00 2001 From: Chuan Shao Date: Thu, 14 May 2015 16:51:43 +0800 Subject: [PATCH] fix typo in code example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 924b731..789485e 100644 --- a/README.md +++ b/README.md @@ -321,7 +321,7 @@ module.exports.load = function (path, cb){ options.vars = env; //If the path is a directory it tries to load the "index.properties" file - properties.parse (configDir, options, cb); + properties.parse (path, options, cb); }); }; ```