[fix] Fixed spelling error

master
avian 2011-05-20 01:21:46 -07:00
parent e7c216e970
commit bdf2fc8cd7
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ Using nconf is easy; it is designed to be a simple key-value store with support
nconf = require('nconf');
//
// Setup nconf to user the 'file' store and set a couple of values;
// Setup nconf to use the 'file' store and set a couple of values;
//
nconf.use('file', { file: 'path/to/your/config.json' });
nconf.set('database:host', '127.0.0.1');

View File

@ -3,7 +3,7 @@ var fs = require('fs'),
nconf = require('./lib/nconf');
//
// Setup nconf to user the 'file' store and set a couple of values;
// Setup nconf to use the 'file' store and set a couple of values;
//
nconf.use('file', { file: path.join(__dirname, 'config.json') });
nconf.set('database:host', '127.0.0.1');