Browse Source

buttonLabel -> Button label for consistency

Kevin Sawicki 8 years ago
parent
commit
36371357cd
2 changed files with 4 additions and 4 deletions
  1. 2 2
      lib/browser/api/dialog.js
  2. 2 2
      spec/api-dialog-spec.js

+ 2 - 2
lib/browser/api/dialog.js

@@ -78,7 +78,7 @@ module.exports = {
     if (options.buttonLabel == null) {
       options.buttonLabel = ''
     } else if (typeof options.buttonLabel !== 'string') {
-      throw new TypeError('buttonLabel must be a string')
+      throw new TypeError('Button label must be a string')
     }
     if (options.defaultPath == null) {
       options.defaultPath = ''
@@ -111,7 +111,7 @@ module.exports = {
     if (options.buttonLabel == null) {
       options.buttonLabel = ''
     } else if (typeof options.buttonLabel !== 'string') {
-      throw new TypeError('buttonLabel must be a string')
+      throw new TypeError('Button label must be a string')
     }
     if (options.defaultPath == null) {
       options.defaultPath = ''

+ 2 - 2
spec/api-dialog-spec.js

@@ -14,7 +14,7 @@ describe('dialog module', () => {
 
       assert.throws(() => {
         dialog.showOpenDialog({buttonLabel: []})
-      }, /buttonLabel must be a string/)
+      }, /Button label must be a string/)
 
       assert.throws(() => {
         dialog.showOpenDialog({defaultPath: {}})
@@ -30,7 +30,7 @@ describe('dialog module', () => {
 
       assert.throws(() => {
         dialog.showSaveDialog({buttonLabel: []})
-      }, /buttonLabel must be a string/)
+      }, /Button label must be a string/)
 
       assert.throws(() => {
         dialog.showSaveDialog({defaultPath: {}})