Skip to content

Commit

Permalink
[fix] Fixed spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
avian authored and avian committed May 20, 2011
1 parent e7c216e commit bdf2fc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion usage.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit bdf2fc8

Please sign in to comment.