Skip to content

Commit c363001

Browse files
authored
Merge pull request #276 from DillonAd/master
fixing grammar error in specification error message
2 parents 96a1ee3 + 69494bb commit c363001

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)