Skip to content

Commit

Permalink
Merge pull request #276 from DillonAd/master
Browse files Browse the repository at this point in the history
fixing grammar error in specification error message
  • Loading branch information
ericnewton76 authored Apr 20, 2018
2 parents 96a1ee3 + 69494bb commit c363001
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit c363001

Please sign in to comment.