From a9d8ead1a22f5f5d2ca275f89832514ea5513daf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Mon, 12 Aug 2019 11:39:20 +0300 Subject: [PATCH] console: fix JavaScript error capitalization --- console/bridge.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/bridge.go b/console/bridge.go index 6aa968a1e6..c7a67a6850 100644 --- a/console/bridge.go +++ b/console/bridge.go @@ -66,7 +66,7 @@ func (b *bridge) NewAccount(call otto.FunctionCall) (response otto.Value) { throwJSException(err.Error()) } if password != confirm { - throwJSException("Passwords don't match!") + throwJSException("passwords don't match!") } // A single string password was specified, use that