Skip to content

Commit

Permalink
Fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
esposm03 committed Dec 10, 2023
1 parent f56e226 commit 53e48b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl CursorThemeIml {
let mut data = Vec::new();

// Find directories where this theme is presented.
for mut path in search_paths.to_owned() {
for mut path in search_paths.iter().cloned() {
path.push(name);
if path.is_dir() {
let data_dir = path.clone();
Expand Down

0 comments on commit 53e48b4

Please sign in to comment.