Chromium Code Reviews| Index: chrome/browser/resources/options2/inline_editable_list.js |
| diff --git a/chrome/browser/resources/options2/inline_editable_list.js b/chrome/browser/resources/options2/inline_editable_list.js |
| index d07bc52352fb2c8f9397409baf1003e31021128b..1c267751a13f93ec98601ad53ad27975603ec876 100644 |
| --- a/chrome/browser/resources/options2/inline_editable_list.js |
| +++ b/chrome/browser/resources/options2/inline_editable_list.js |
| @@ -180,7 +180,7 @@ cr.define('options', function() { |
| /** |
| * The HTML element that should have focus initially when editing starts, |
| * if a specific element wasn't clicked. |
| - * Defaults to the first <input> element; can be overriden by subclasses if |
| + * Defaults to the first <input> element; can be overridden by subclasses if |
| * a different element should be focused. |
| * @type {HTMLElement} |
| */ |
| @@ -192,7 +192,7 @@ cr.define('options', function() { |
| * Whether the input in currently valid to submit. If this returns false |
| * when editing would be submitted, either editing will not be ended, |
| * or it will be cancelled, depending on the context. |
| - * Can be overrided by subclasses to perform input validation. |
| + * Can be overridden by subclasses to perform input validation. |
| * @type {boolean} |
| */ |
| get currentInputIsValid() { |
| @@ -201,7 +201,7 @@ cr.define('options', function() { |
| /** |
| * Returns true if the item has been changed by an edit. |
| - * Can be overrided by subclasses to return false when nothing has changed |
| + * Can be overridden by subclasses to return false when nothing has changed |
| * to avoid unnecessary commits. |
| * @type {boolean} |
| */ |
| @@ -296,7 +296,7 @@ cr.define('options', function() { |
| }, |
| /** |
| - * Called a key is pressed. Handles committing and cancelling edits. |
| + * Called a key is pressed. Handles committing and canceling edits. |
|
Dan Beam
2012/08/11 01:38:02
called *when* a key is pressed
Greg Spencer (Chromium)
2012/08/13 19:20:04
Done.
|
| * @param {Event} e The key down event. |
| * @private |
| */ |