We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 96a1ee3 + 69494bb commit c363001Copy full SHA for c363001
src/CommandLine/Core/SpecificationGuards.cs
@@ -13,7 +13,7 @@ static class SpecificationGuards
13
Tuple.Create(GuardAgainstScalarWithRange(), "Scalar option specifications do not support range specification."),
14
Tuple.Create(GuardAgainstSequenceWithWrongRange(), "Bad range in sequence option specifications."),
15
Tuple.Create(GuardAgainstSequenceWithZeroRange(), "Zero is not allowed in range of sequence option specifications."),
16
- Tuple.Create(GuardAgainstOneCharLongName(), "Long name should be longest than one character.")
+ Tuple.Create(GuardAgainstOneCharLongName(), "Long name should be longer than one character.")
17
};
18
19
private static Func<Specification, bool> GuardAgainstScalarWithRange()
0 commit comments