diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | ui/app/eth-store-warning.js | 2 | ||||
-rw-r--r-- | ui/app/first-time/create-vault.js | 2 |
3 files changed, 4 insertions, 2 deletions
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. 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 } |