Skip to content

Commit

Permalink
chore: fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir authored Feb 19, 2024
1 parent 86e5f8f commit 9021a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/wry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ fn main() -> wry::Result<()> {
}
};

fn create_webview<'a>(window: &'a Rc<Window>) -> WebViewBuilder<'a> {
fn create_webview(window: &Rc<Window>) -> WebViewBuilder<'_> {
#[cfg(not(target_os = "linux"))]
return WebViewBuilder::new(window);
#[cfg(target_os = "linux")]
Expand Down

0 comments on commit 9021a06

Please sign in to comment.