From b6038399f0d499c4033564fcb2d4fef142d54fee Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Sun, 16 May 2021 21:17:01 -0700 Subject: [PATCH] matchers: rename AlwaysMatcher to EverythingMatcher --- lib/src/matchers.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/matchers.rs b/lib/src/matchers.rs index 9ec59132d..9758702f4 100644 --- a/lib/src/matchers.rs +++ b/lib/src/matchers.rs @@ -42,9 +42,9 @@ pub trait Matcher { } #[derive(PartialEq, Eq, Debug)] -pub struct AlwaysMatcher; +pub struct EverythingMatcher; -impl Matcher for AlwaysMatcher { +impl Matcher for EverythingMatcher { fn matches(&self, _file: &FileRepoPath) -> bool { true }