Skip to content

Commit beec751

Browse files
committed
Capitalization
1 parent eca874b commit beec751

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SeqCli/Cli/Features/DateRangeFeature.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class DateRangeFeature : CommandFeature
2323
public override void Enable(OptionSet options)
2424
{
2525
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);
26+
options.Add("end=", "ISO 8601 date/time to query to", v => _end = v);
2727
}
2828

2929
public DateTime? Start => _start != null ? DateTime.Parse(_start) : (DateTime?)null;

0 commit comments

Comments
 (0)