We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8aca84 commit 70afa09Copy full SHA for 70afa09
README.md
@@ -166,10 +166,10 @@ impl<T: PartialEq + Debug> Matcher for MyEqMatcher<T> {
166
167
fn describe(&self, matcher_result: MatcherResult) -> String {
168
match matcher_result {
169
- MatcherResult::Matches => {
+ MatcherResult::Match => {
170
format!("is equal to {:?} the way I define it", self.expected)
171
}
172
- MatcherResult::DoesNotMatch => {
+ MatcherResult::NoMatch => {
173
format!("isn't equal to {:?} the way I define it", self.expected)
174
175
0 commit comments