clippy: fix or-pattern in let binding
This commit is contained in:
parent
e64138c534
commit
402a00a15d
1 changed files with 3 additions and 1 deletions
|
@ -885,7 +885,9 @@ struct MinifyingSugg<'a>(Sugg<'a>);
|
||||||
|
|
||||||
impl<'a> MinifyingSugg<'a> {
|
impl<'a> MinifyingSugg<'a> {
|
||||||
fn as_str(&self) -> &str {
|
fn as_str(&self) -> &str {
|
||||||
let Sugg::NonParen(s) | Sugg::MaybeParen(s) | Sugg::BinOp(_, s) = &self.0;
|
let s = match &self.0 {
|
||||||
|
Sugg::NonParen(s) | Sugg::MaybeParen(s) | Sugg::BinOp(_, s) => s,
|
||||||
|
};
|
||||||
s.as_ref()
|
s.as_ref()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue