diff options
| author | FloppyDiskDrive <[email protected]> | 2017-11-23 11:20:53 -0600 |
|---|---|---|
| committer | FloppyDiskDrive <[email protected]> | 2017-11-23 11:20:53 -0600 |
| commit | 8fff93eb7da1b01d101e146ca7fe5d90ca01fcde (patch) | |
| tree | ebb8eafff81f5e54925ec27f1a19b5066f83a418 /ShiftOS.Main/Terminal/Commands/Help.cs | |
| parent | 1febbbd405e6f67401313defb76cc5a41b44c912 (diff) | |
| download | shiftos-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.cs | 4 |
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]}"); } } } |
