From 31b38e820bcc576158ce6c43bfe10da9a48c139b Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Thu, 4 Aug 2016 11:14:39 -0700 Subject: [PATCH 1/2] Fix typos with missing apostrophe --- ui/app/eth-store-warning.js | 2 +- ui/app/first-time/create-vault.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/eth-store-warning.js b/ui/app/eth-store-warning.js index d77cc0870..7fe54a309 100644 --- a/ui/app/eth-store-warning.js +++ b/ui/app/eth-store-warning.js @@ -63,7 +63,7 @@ EthStoreWarning.prototype.render = function () { fontSize: '11px', }, - }, 'Dont show me this message again'), + }, 'Don\'t show me this message again'), ]), h('.flex-row', { style: { diff --git a/ui/app/first-time/create-vault.js b/ui/app/first-time/create-vault.js index 3dfbf0dbd..33ae62179 100644 --- a/ui/app/first-time/create-vault.js +++ b/ui/app/first-time/create-vault.js @@ -120,7 +120,7 @@ CreateVaultScreen.prototype.createNewVault = function () { return } if (password !== passwordConfirm) { - this.warning = 'passwords dont match' + this.warning = 'passwords don\'t match' this.props.dispatch(actions.displayWarning(this.warning)) return } From f42723c903d5f77e9df8050710a1490f63618fbc Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Thu, 4 Aug 2016 11:24:25 -0700 Subject: [PATCH 2/2] Add to changelog. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aaa8b291..8ac0983d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Current Master +- Fix various typos. + ## 2.7.3 2016-07-29 - Fix bug where changing an account would not update in a live Dapp.