Skip to content

Commit d36eb49

Browse files
committed
Minor update
1 parent 8d5d2d2 commit d36eb49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shell/AIShell.Kernel/Command/ClearCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ namespace AIShell.Kernel.Commands;
66
internal sealed class ClearCommand : CommandBase
77
{
88
public ClearCommand()
9-
: base("cls", "Clear the screen.")
9+
: base("clear", "Clear the screen.")
1010
{
1111
this.SetHandler(ClearAction);
12-
this.AddAlias("clear");
12+
this.AddAlias("cls");
1313
}
1414

1515
private void ClearAction()

0 commit comments

Comments
 (0)