1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix typos with missing apostrophe

This commit is contained in:
Kevin Serrano 2016-08-04 11:14:39 -07:00
parent d5cb1cb820
commit 31b38e820b
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ EthStoreWarning.prototype.render = function () {
fontSize: '11px', fontSize: '11px',
}, },
}, 'Dont show me this message again'), }, 'Don\'t show me this message again'),
]), ]),
h('.flex-row', { h('.flex-row', {
style: { style: {

View File

@ -120,7 +120,7 @@ CreateVaultScreen.prototype.createNewVault = function () {
return return
} }
if (password !== passwordConfirm) { if (password !== passwordConfirm) {
this.warning = 'passwords dont match' this.warning = 'passwords don\'t match'
this.props.dispatch(actions.displayWarning(this.warning)) this.props.dispatch(actions.displayWarning(this.warning))
return return
} }