From 27fe5b784c53637da3c09418229dcd95d5210b27 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 17 Apr 2014 11:00:00 -0700 Subject: [PATCH] :memo: Use package instead of plugin in example --- src/config.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.coffee b/src/config.coffee index e41bbb9d6..551240f31 100644 --- a/src/config.coffee +++ b/src/config.coffee @@ -18,9 +18,9 @@ pathWatcher = require 'pathwatcher' # ## Example # # ```coffeescript -# atom.config.set('myplugin.key', 'value') -# atom.config.observe 'myplugin.key', -> -# console.log 'My configuration changed:', atom.config.get('myplugin.key') +# atom.config.set('my-package.key', 'value') +# atom.config.observe 'my-package.key', -> +# console.log 'My configuration changed:', atom.config.get('my-package.key') # ``` module.exports = class Config