Skip to content

Commit 69494bb

Browse files
committed
fixing grammer error
1 parent 67f77e1 commit 69494bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CommandLine/Core/SpecificationGuards.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static class SpecificationGuards
1313
Tuple.Create(GuardAgainstScalarWithRange(), "Scalar option specifications do not support range specification."),
1414
Tuple.Create(GuardAgainstSequenceWithWrongRange(), "Bad range in sequence option specifications."),
1515
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.")
16+
Tuple.Create(GuardAgainstOneCharLongName(), "Long name should be longer than one character.")
1717
};
1818

1919
private static Func<Specification, bool> GuardAgainstScalarWithRange()

0 commit comments

Comments
 (0)