From bc7f94ddda14f22b1421d59d28810599f316782c Mon Sep 17 00:00:00 2001 From: hydroflame <79246165+hydroflame@users.noreply.github.com> Date: Sun, 19 Dec 2021 00:23:01 -0500 Subject: [PATCH] Update check.ts --- src/Terminal/commands/check.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Terminal/commands/check.ts b/src/Terminal/commands/check.ts index 6ec67ac6b..0bc198a2f 100644 --- a/src/Terminal/commands/check.ts +++ b/src/Terminal/commands/check.ts @@ -19,7 +19,7 @@ export function check( // Can only tail script files if (!isScriptFilename(scriptName)) { terminal.error( - `'check' can only be called on .script files (filename must end with ${validScriptExtensions.join(", ")})`, + `'check' can only be called on scripts files (filename must end with ${validScriptExtensions.join(", ")})`, ); return; }