Skip to content

Commit

Permalink
fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tguichaoua committed Dec 11, 2024
1 parent 5e0d217 commit 6f47bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/egui_demo_app/src/wrap_app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl Anchor {
#[cfg(target_arch = "wasm32")]
fn from_str_case_insensitive(anchor: &str) -> Option<Self> {
let anchor = anchor.to_lowercase();
Anchor::all().into_iter().find(|x| x.to_string() == anchor)
Self::all().into_iter().find(|x| x.to_string() == anchor)
}
}

Expand Down

0 comments on commit 6f47bf2

Please sign in to comment.