From 81220ebe44403f0415179b02220846dccd4229b6 Mon Sep 17 00:00:00 2001 From: Simone Franco Date: Tue, 9 Jun 2020 17:59:39 +0200 Subject: [PATCH] Fixed a typo in an error string --- src/Errors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Errors.ts b/src/Errors.ts index 371bd56..8298758 100644 --- a/src/Errors.ts +++ b/src/Errors.ts @@ -49,7 +49,7 @@ export const enum CLI_ERROR { GRACEFULLY_STOP = ' ', // gracefully stop execution, yargs way MISSING_REQUIRED_ARG = 'You must specify a URLs source.\n' + - 'Valid options are -i for one or more URLs separated by sapce or -f for URLs from file.', + 'Valid options are -i for one or more URLs separated by space or -f for URLs from file.', VIDEOURLS_ARG_CONFLICT = 'Too many URLs sources specified!\n' + 'Please specify a single source, either -i or -f (URLs from file)',