summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/match_single_binding2.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/match_single_binding2.fixed')
-rw-r--r--src/tools/clippy/tests/ui/match_single_binding2.fixed4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/clippy/tests/ui/match_single_binding2.fixed b/src/tools/clippy/tests/ui/match_single_binding2.fixed
index 6a7db67e3..e3cf56a42 100644
--- a/src/tools/clippy/tests/ui/match_single_binding2.fixed
+++ b/src/tools/clippy/tests/ui/match_single_binding2.fixed
@@ -30,7 +30,7 @@ fn main() {
#[rustfmt::skip]
Some((first, _second)) => {
let (a, b) = get_tup();
- println!("a {:?} and b {:?}", a, b);
+ println!("a {:?} and b {:?}", a, b)
},
None => println!("nothing"),
}
@@ -49,5 +49,5 @@ fn main() {
0 => 1,
_ => 2,
};
- println!("Single branch");
+ println!("Single branch")
}