From a26b8e96484ee397bba96237f2a636258bf90d0a Mon Sep 17 00:00:00 2001 From: not-elm Date: Sat, 7 Feb 2026 11:58:22 +0900 Subject: [PATCH] fmt --- examples/simple.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/examples/simple.rs b/examples/simple.rs index 3dc5ddc..3cfd51d 100644 --- a/examples/simple.rs +++ b/examples/simple.rs @@ -5,10 +5,7 @@ use bevy_cef::prelude::*; fn main() { App::new() - .add_plugins(( - DefaultPlugins, - CefPlugin::default(), - )) + .add_plugins((DefaultPlugins, CefPlugin::default())) .add_systems( Startup, (spawn_camera, spawn_directional_light, spawn_webview),