From d279f5eb2fa1498a8103dc4ed00ec0a0844541cd Mon Sep 17 00:00:00 2001 From: emad-salah Date: Mon, 2 Aug 2021 12:51:59 +0100 Subject: [PATCH] Error spelling fixes --- services/gunDB/Mediator/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/gunDB/Mediator/index.js b/services/gunDB/Mediator/index.js index fd13c439..e84ac866 100644 --- a/services/gunDB/Mediator/index.js +++ b/services/gunDB/Mediator/index.js @@ -538,7 +538,7 @@ const register = async (alias, pass) => { if (theresPeers && !atLeastOneIsConnected) { throw new Error( - 'No connected to any peers for checking of duplicate aliases' + 'Not connected to any peers for checking of duplicate aliases' ) } @@ -554,7 +554,7 @@ const register = async (alias, pass) => { if (userData) { throw new Error( - 'The given alias has been used before, use an unique alias instead. (Caught at 2nd try)' + 'The given alias has been used before, use a unique alias instead. (Caught at 2nd try)' ) } }