We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eca874b commit beec751Copy full SHA for beec751
src/SeqCli/Cli/Features/DateRangeFeature.cs
@@ -23,7 +23,7 @@ class DateRangeFeature : CommandFeature
23
public override void Enable(OptionSet options)
24
{
25
options.Add("start=", "ISO 8601 date/time to query from", v => _start = v);
26
- options.Add("end=", "ISO 8601 Date/time to query to", v => _end = v);
+ options.Add("end=", "ISO 8601 date/time to query to", v => _end = v);
27
}
28
29
public DateTime? Start => _start != null ? DateTime.Parse(_start) : (DateTime?)null;
0 commit comments