mirror of
https://github.com/msfjarvis/clipboard-substitutor
synced 2025-08-15 07:47:02 +05:30
chore: fix Clippy lints
This commit is contained in:
parent
6d75c14a93
commit
ebf0a076fd
2 changed files with 5 additions and 5 deletions
|
@ -66,7 +66,7 @@ impl Replacements {
|
|||
}
|
||||
}
|
||||
MatcherType::Multiple(matchers) => {
|
||||
for matcher in matchers.iter() {
|
||||
for matcher in matchers {
|
||||
if let Matcher::Regex { pattern } = matcher {
|
||||
if let Err(e) = Regex::from_str(pattern) {
|
||||
bail!(e);
|
||||
|
@ -115,8 +115,8 @@ impl Act for Action {
|
|||
trace!(?self, ?input, "Applying action");
|
||||
match self {
|
||||
Action::Replace { from, to } => input.replace(from, to),
|
||||
Action::Prefix { prefix } => format!("{}{}", prefix, input),
|
||||
Action::Suffix { suffix } => format!("{}{}", input, suffix),
|
||||
Action::Prefix { prefix } => format!("{prefix}{input}"),
|
||||
Action::Suffix { suffix } => format!("{input}{suffix}"),
|
||||
Action::Set { content } => content.clone(),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue