Run cargo fmt
diff --git a/examples/scenes/src/test_scenes.rs b/examples/scenes/src/test_scenes.rs
index 6edaa48..d6d5dee 100644
--- a/examples/scenes/src/test_scenes.rs
+++ b/examples/scenes/src/test_scenes.rs
@@ -62,7 +62,6 @@
         scene!(hugepath),
         scene!(longpathdash(Cap::Butt), "longpathdash (butt caps)", false),
         scene!(longpathdash(Cap::Round), "longpathdash (round caps)", false),
-
         scene!(crate::mmark::MMark::new(80_000), "mmark", false),
         scene!(many_draw_objects),
     ];
@@ -577,9 +576,7 @@
     ];
     let mut t = Affine::IDENTITY;
     for w in widths {
-        let stroke = Stroke::new(w)
-            .with_caps(Cap::Butt)
-            .with_join(Join::Miter);
+        let stroke = Stroke::new(w).with_caps(Cap::Butt).with_join(Join::Miter);
         scene.stroke(&stroke, t, Color::YELLOW, None, &path1);
         scene.stroke(&stroke, t, Color::CYAN, None, &path2);
         t = Affine::translate((3., 0.)) * t;