From 83440f99562110876fa45bd83c415e12faba9a88 Mon Sep 17 00:00:00 2001 From: Christian Tellnes Date: Thu, 24 May 2012 07:27:19 +0200 Subject: [PATCH] fix spelling in error message --- lib/nconf/stores/file.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nconf/stores/file.js b/lib/nconf/stores/file.js index ae0ffe1..117f5ab 100644 --- a/lib/nconf/stores/file.js +++ b/lib/nconf/stores/file.js @@ -21,7 +21,7 @@ var fs = require('fs'), // var File = exports.File = function (options) { if (!options || !options.file) { - throw new Error ('Missing required option `files`'); + throw new Error ('Missing required option `file`'); } Memory.call(this, options);