diff --git a/src/app/browser/window/tab/item/page/content/status/mime.rs b/src/app/browser/window/tab/item/page/content/status/mime.rs index 65087ffc..e458bf8a 100644 --- a/src/app/browser/window/tab/item/page/content/status/mime.rs +++ b/src/app/browser/window/tab/item/page/content/status/mime.rs @@ -26,7 +26,7 @@ pub fn build(mime: &str, download: Option<(&Rc, &Uri)>) -> StatusPag move |_| { action .load - .activate(Some(&format!("download:{}", request)), true, false) + .activate(Some(&format!("download:{request}")), true, false) } }); diff --git a/src/app/browser/window/tab/item/page/navigation/request/identity/common/form/list/item/tooltip.rs b/src/app/browser/window/tab/item/page/navigation/request/identity/common/form/list/item/tooltip.rs index e35fb43e..5cf5759a 100644 --- a/src/app/browser/window/tab/item/page/navigation/request/identity/common/form/list/item/tooltip.rs +++ b/src/app/browser/window/tab/item/page/navigation/request/identity/common/form/list/item/tooltip.rs @@ -29,7 +29,7 @@ pub fn new_for_profile_identity_id(certificate: &TlsCertificate, scope: &[String tooltip.push_str("\n\nScope\n"); for path in scope { - tooltip.push_str(&format!("\n{}", path)); + tooltip.push_str(&format!("\n{path}")); } }