Skip to content

Commit

Permalink
Remove some braces
Browse files Browse the repository at this point in the history
  • Loading branch information
CaspianA1 committed May 28, 2024
1 parent 53043df commit 8391467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ fn main() -> utility_types::generic_result::MaybeError {
let (mut top_level_window, shared_window_state, shared_window_state_updater) =
match core_init_info {
Ok(info) => info,
Err(err) => {panic!("An error arose when initializing the application: '{err}'.");}
Err(err) => panic!("An error arose when initializing the application: '{err}'.")
};

rendering_params.shared_window_state = shared_window_state;
Expand Down

0 comments on commit 8391467

Please sign in to comment.