Skip to content

Commit 5d52310

Browse files
committed
fix(cli): Fixed shortcut for option.
1 parent a213fc2 commit 5d52310

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cli/src/Commands/SummarizeCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ internal sealed class SummarizeCommand : Command
1515
getDefaultValue: () => 20,
1616
description: "Word count for summary");
1717
var promptOption = new Option<string>(
18-
aliases: ["--prompt", "-w"],
18+
aliases: ["--prompt", "-p"],
1919
getDefaultValue: () => "Please summarize the the following text in {wordCount} words or less",
2020
description: "Prompt for summarization");
2121

0 commit comments

Comments
 (0)