We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67f77e1 commit 69494bbCopy full SHA for 69494bb
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