Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CommandLine/Core/SpecificationGuards.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ static class SpecificationGuards
Tuple.Create(GuardAgainstScalarWithRange(), "Scalar option specifications do not support range specification."),
Tuple.Create(GuardAgainstSequenceWithWrongRange(), "Bad range in sequence option specifications."),
Tuple.Create(GuardAgainstSequenceWithZeroRange(), "Zero is not allowed in range of sequence option specifications."),
Tuple.Create(GuardAgainstOneCharLongName(), "Long name should be longest than one character.")
Tuple.Create(GuardAgainstOneCharLongName(), "Long name should be longer than one character.")
};

private static Func<Specification, bool> GuardAgainstScalarWithRange()
Expand Down