From 14cfe7c18e971be4d0f8c8245dc152ddf3d7a023 Mon Sep 17 00:00:00 2001 From: Luca Armaroli Date: Thu, 24 Sep 2020 02:30:16 +0200 Subject: [PATCH] typo fix --- src/Errors.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Errors.ts b/src/Errors.ts index 7b47ab2..5b91c90 100644 --- a/src/Errors.ts +++ b/src/Errors.ts @@ -13,7 +13,7 @@ export const enum ERROR_CODE { NO_ENCRYPTION, ARIA2C_CRASH, NO_CONNECT_ARIA2C, - NO_DEAMON_PORT, + NO_DAEMON_PORT, MISSING_ARIA2 } @@ -43,7 +43,7 @@ export const errors: {[key: number]: string} = { [ERROR_CODE.NO_CONNECT_ARIA2C]: 'Could not connect to Aria2c json-rpc webSocket', - [ERROR_CODE.NO_DEAMON_PORT]: 'Could not get a free port to use' + [ERROR_CODE.NO_DAEMON_PORT]: 'Could not get a free port to use' };