buttonLabel -> Button label for consistency
authorKevin Sawicki <kevinsawicki@gmail.com>
Thu, 1 Dec 2016 22:16:33 +0000 (14:16 -0800)
committerKevin Sawicki <kevinsawicki@gmail.com>
Thu, 1 Dec 2016 22:16:33 +0000 (14:16 -0800)
lib/browser/api/dialog.js
spec/api-dialog-spec.js

index d24a1f9..766d89c 100644 (file)
@@ -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 = ''
index 3f8f570..6391edc 100644 (file)
@@ -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: {}})