Skip to content

Commit 5c5d2c8

Browse files
committed
rustfmt
1 parent 00644d4 commit 5c5d2c8

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

Diff for: wezterm-gui/src/update.rs

+2-8
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,7 @@ pub fn load_last_release_info_and_set_banner() {
8989

9090
fn set_banner_from_release_info(latest: &Release) {
9191
let mux = crate::Mux::get();
92-
let url = format!(
93-
"https://wezterm.org/changelog.html#{}",
94-
latest.tag_name
95-
);
92+
let url = format!("https://wezterm.org/changelog.html#{}", latest.tag_name);
9693

9794
let icon = ITermFileData {
9895
name: None,
@@ -191,10 +188,7 @@ fn update_checker() {
191188
current
192189
);
193190

194-
let url = format!(
195-
"https://wezterm.org/changelog.html#{}",
196-
latest.tag_name
197-
);
191+
let url = format!("https://wezterm.org/changelog.html#{}", latest.tag_name);
198192

199193
if force_ui || socks.is_empty() || socks[0] == my_sock {
200194
persistent_toast_notification_with_click_to_open_url(

0 commit comments

Comments
 (0)