aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/Terminal/Commands/Help.cs
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-11-23 11:20:53 -0600
committerFloppyDiskDrive <[email protected]>2017-11-23 11:20:53 -0600
commit8fff93eb7da1b01d101e146ca7fe5d90ca01fcde (patch)
treeebb8eafff81f5e54925ec27f1a19b5066f83a418 /ShiftOS.Main/Terminal/Commands/Help.cs
parent1febbbd405e6f67401313defb76cc5a41b44c912 (diff)
downloadshiftos-rewind-8fff93eb7da1b01d101e146ca7fe5d90ca01fcde.tar.gz
shiftos-rewind-8fff93eb7da1b01d101e146ca7fe5d90ca01fcde.tar.bz2
shiftos-rewind-8fff93eb7da1b01d101e146ca7fe5d90ca01fcde.zip
extremely rough savesystem
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]}");
}
}
}