Skip to content

Commit 10d7a18

Browse files
committed
fmt
1 parent eb3ffe6 commit 10d7a18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/utils/sugg.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use rustc_span::{BytePos, Pos};
1313
use std::borrow::Cow;
1414
use std::convert::TryInto;
1515
use std::fmt::Display;
16-
use std::ops::{Add, Sub, Not};
16+
use std::ops::{Add, Not, Sub};
1717

1818
/// A helper type to build suggestion correctly handling parenthesis.
1919
pub enum Sugg<'a> {
@@ -334,7 +334,7 @@ macro_rules! forward_binop_impls_to_ref {
334334
$imp::$method(&self, &other)
335335
}
336336
}
337-
}
337+
};
338338
}
339339

340340
impl Add for &Sugg<'_> {

0 commit comments

Comments
 (0)