From 043e007b83911af058e3be995a181d593e333275 Mon Sep 17 00:00:00 2001 From: SinusFox <61253950+SinusFox@users.noreply.github.com> Date: Mon, 7 Oct 2024 19:19:27 +0200 Subject: [PATCH] Fixing typo in log --- src/app/scripts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/scripts.ts b/src/app/scripts.ts index eb20879..161b551 100644 --- a/src/app/scripts.ts +++ b/src/app/scripts.ts @@ -47,7 +47,7 @@ function walltimeStart() { } function isInputValidRegex(obj: string | undefined, subj: string | undefined, bounds: string | undefined, vars: string | undefined): boolean { - customLog("Staring input checks..."); + customLog("Starting input checks..."); // standard case: input is undefined - invalid if (obj === undefined || obj === null || subj === undefined || subj === null || bounds === undefined || bounds === null || vars === undefined || vars === null) {