summaryrefslogtreecommitdiffstats
path: root/lib/plugin.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/plugin.js')
-rw-r--r--lib/plugin.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugin.js b/lib/plugin.js
index 4095231..5469cd1 100644
--- a/lib/plugin.js
+++ b/lib/plugin.js
@@ -230,12 +230,12 @@ Plugin.prototype.copyAssets = function(out, base) {
// Get config from book
Plugin.prototype.getConfig = function() {
- return this.book.config.get('pluginsCOnfig.'+this.reducedName());
+ return this.book.config.get('pluginsConfig.'+this.reducedName());
};
// Set configuration for this plugin
Plugin.prototype.setConfig = function(values) {
- return this.book.config.set('pluginsCOnfig.'+this.reducedName(), values);
+ return this.book.config.set('pluginsConfig.'+this.reducedName(), values);
};
module.exports = Plugin;