Skip to content

Commit

Permalink
Fix formating
Browse files Browse the repository at this point in the history
  • Loading branch information
MinerSebas committed Feb 8, 2024
1 parent 706789e commit 3e81952
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ui/app_lints/insert_resource_with_default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ fn main() {
App::new()
.insert_resource(A::default())
.insert_resource(B::default());
App::new().insert_resource(A::default()).insert_resource(B(0));
App::new().insert_resource(A(0)).insert_resource(B::default());
App::new()
.insert_resource(A::default())
.insert_resource(B(0));
App::new()
.insert_resource(A(0))
.insert_resource(B::default());

App::new().insert_non_send_resource(A::default());
App::new().insert_non_send_resource(B::default());
Expand Down

0 comments on commit 3e81952

Please sign in to comment.