| Index: chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js
|
| diff --git a/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js b/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js
|
| index 0b2923e669ae76c9977c85feb0c822560f72cb92..1727356c466ef1db04b9a4d5d065f7c63a964a09 100644
|
| --- a/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js
|
| +++ b/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/plugin_settings.js
|
| @@ -12,14 +12,14 @@ cr.define('pluginSettings', function() {
|
|
|
| /**
|
| * Creates a new content settings model.
|
| - * @param {string} plugin Identifies the plug-in for which this object stores
|
| + * @param {string} plugin Identifies the plugin for which this object stores
|
| * settings.
|
| * @constructor
|
| * @extends {cr.EventTarget}
|
| */
|
| function Settings(plugin) {
|
| /**
|
| - * Identifies the plug-in for which this object stores settings.
|
| + * Identifies the plugin for which this object stores settings.
|
| * @type {string}
|
| * @private
|
| */
|
| @@ -195,7 +195,7 @@ cr.define('pluginSettings', function() {
|
| },
|
|
|
| /**
|
| - * @return {!Array} A list of all content setting rules for this plug-in.
|
| + * @return {!Array} A list of all content setting rules for this plugin.
|
| */
|
| getAll: function() {
|
| var rules = [];
|
|
|