From 4c7aea99d35ef22687973676b210c13186786802 Mon Sep 17 00:00:00 2001 From: indexzero Date: Tue, 7 Jun 2011 23:45:23 -0400 Subject: [PATCH] [doc] Update docco docs --- docs/nconf.html | 2 +- docs/nconf/provider.html | 2 +- docs/nconf/stores.html | 2 +- docs/nconf/stores/file.html | 2 +- docs/nconf/stores/memory.html | 2 +- docs/nconf/stores/redis.html | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/nconf.html b/docs/nconf.html index 9acb38e..170b10f 100644 --- a/docs/nconf.html +++ b/docs/nconf.html @@ -6,7 +6,7 @@ */ var Provider = require('./nconf/provider').Provider, - nconf = module.exports = Object.create(Provider.prototype);

Use the memory engine by default.

nconf.use('memory');

Expose the version from the package.json using pkginfo.

require('pkginfo')('version');

function path (key)

+ nconf = module.exports = Object.create(Provider.prototype);

Use the memory engine by default.

nconf.use('memory');

Expose the version from the package.json using pkginfo.

require('pkginfo')(module, 'version');

function path (key)

@key {string} The ':' delimited key to split

diff --git a/docs/nconf/provider.html b/docs/nconf/provider.html index 18fa71d..776fb86 100644 --- a/docs/nconf/provider.html +++ b/docs/nconf/provider.html @@ -1,4 +1,4 @@ - provider.js

provider.js

/*
+      provider.js           

provider.js

/*
  * provider.js: Abstraction providing an interface into pluggable configuration storage.
  *
  * (C) 2011, Charlie Robbins
diff --git a/docs/nconf/stores.html b/docs/nconf/stores.html
index 2185f9e..b14c515 100644
--- a/docs/nconf/stores.html
+++ b/docs/nconf/stores.html
@@ -1,4 +1,4 @@
-      stores.js           

stores.js

/*
+      stores.js           

stores.js

/*
  * stores.js: Top-level include for all nconf stores
  *
  * (C) 2011, Charlie Robbins
diff --git a/docs/nconf/stores/file.html b/docs/nconf/stores/file.html
index 065eed8..a4f5158 100644
--- a/docs/nconf/stores/file.html
+++ b/docs/nconf/stores/file.html
@@ -1,4 +1,4 @@
-      file.js           

file.js

/*
+      file.js           

file.js

/*
  * file.js: Simple file storage engine for nconf files
  *
  * (C) 2011, Charlie Robbins
diff --git a/docs/nconf/stores/memory.html b/docs/nconf/stores/memory.html
index 07e22b3..9e5bd5e 100644
--- a/docs/nconf/stores/memory.html
+++ b/docs/nconf/stores/memory.html
@@ -1,4 +1,4 @@
-      memory.js           

memory.js

/*
+      memory.js           

memory.js

/*
  * memory.js: Simple memory storage engine for nconf configuration(s)
  *
  * (C) 2011, Charlie Robbins
diff --git a/docs/nconf/stores/redis.html b/docs/nconf/stores/redis.html
index 71b66fa..b86fdbb 100644
--- a/docs/nconf/stores/redis.html
+++ b/docs/nconf/stores/redis.html
@@ -1,4 +1,4 @@
-      redis.js