From 9a2bb16548ab1e91f11b09c3c5d1aff795e27872 Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Mon, 10 Jun 2024 06:39:56 +0700 Subject: [PATCH] MISC: Fix wrong help text of cd command (#1376) --- src/Terminal/HelpText.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Terminal/HelpText.ts b/src/Terminal/HelpText.ts index a63d053d6..2de92ba29 100644 --- a/src/Terminal/HelpText.ts +++ b/src/Terminal/HelpText.ts @@ -148,8 +148,7 @@ export const HelpTexts: Record = { cd: [ "Usage: cd [dir]", " ", - "Change to the specified directory. Note that this works even for directories that don't exist. If you ", - "change to a directory that does not exist, it will not be 'created'. Examples:", + "Change to the specified directory. You cannot change to a directory that does not exist. Examples:", " ", " cd scripts/hacking", " ",