aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/Terminal/Commands/Help.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Main/Terminal/Commands/Help.cs')
-rw-r--r--ShiftOS.Main/Terminal/Commands/Help.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.Main/Terminal/Commands/Help.cs b/ShiftOS.Main/Terminal/Commands/Help.cs
index c851baf..9067551 100644
--- a/ShiftOS.Main/Terminal/Commands/Help.cs
+++ b/ShiftOS.Main/Terminal/Commands/Help.cs
@@ -25,13 +25,13 @@ namespace ShiftOS.Main.Terminal.Commands
if (t.Name == args[0])
{
solved = true;
- WriteLine($"{t.Name}: {t.Summary} \nusage: {t.Usage}");
+ WriteLine($"{t.Name}: {t.Summary} \n usage: {t.Usage}");
break;
}
}
if (!solved)
{
- WriteLine("The command \"" + args[0] + "\" could not be found.");
+ WriteLine($"sbash: invalid token: {args[0]}");
}
}
}