Skip to content

Commit 633c1cc

Browse files
committed
Fix help text
1 parent 397f45e commit 633c1cc

File tree

1 file changed

+3
-3
lines changed
  • src/InEngine.Core/Queuing/Commands

1 file changed

+3
-3
lines changed

src/InEngine.Core/Queuing/Commands/Peek.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ namespace InEngine.Core.Queuing.Commands
1010
{
1111
public class Peek : AbstractCommand
1212
{
13-
[Option("from", DefaultValue = 0, HelpText = "The first commandEnvelope to peek at (0-indexed).")]
13+
[Option("from", DefaultValue = 0, HelpText = "The first command to peek at (0-indexed).")]
1414
public long From { get; set; } = 0;
1515

16-
[Option("to", DefaultValue = 10, HelpText = "The last commandEnvelope to peek at.")]
17-
public long To { get; set; } = 10;
16+
[Option("to", DefaultValue = 9, HelpText = "The last command to peek at.")]
17+
public long To { get; set; } = 9;
1818

1919
[Option("json", HelpText = "View the messages as JSON.")]
2020
public bool JsonFormat { get; set; }

0 commit comments

Comments
 (0)