Fixed some issues with code escaping

master
Charter Jacobson 2016-05-14 14:55:23 -05:00
parent 3d4e589578
commit d70b6a0335
1 changed files with 3 additions and 3 deletions

View File

@ -149,12 +149,12 @@ Removes the store with the specified `name.` The configuration stored at that le
``` js
nconf.remove('file');
```y
```
### nconf.required(keys)
Declares a set of string keys to be mandatory, and throw an error if any are missing.
```js
``` js
nconf.defaults({
keya: 'a',
});
@ -293,7 +293,7 @@ Once installing both `nconf` and `nconf-redis`, you must require both modules to
```
## Installation
```
``` bash
npm install nconf --save
```