We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 397f45e commit 633c1ccCopy full SHA for 633c1cc
1 file changed
src/InEngine.Core/Queuing/Commands/Peek.cs
@@ -10,11 +10,11 @@ namespace InEngine.Core.Queuing.Commands
10
{
11
public class Peek : AbstractCommand
12
13
- [Option("from", DefaultValue = 0, HelpText = "The first commandEnvelope to peek at (0-indexed).")]
+ [Option("from", DefaultValue = 0, HelpText = "The first command to peek at (0-indexed).")]
14
public long From { get; set; } = 0;
15
16
- [Option("to", DefaultValue = 10, HelpText = "The last commandEnvelope to peek at.")]
17
- public long To { get; set; } = 10;
+ [Option("to", DefaultValue = 9, HelpText = "The last command to peek at.")]
+ public long To { get; set; } = 9;
18
19
[Option("json", HelpText = "View the messages as JSON.")]
20
public bool JsonFormat { get; set; }
0 commit comments