Skip to content

Commit

Permalink
fixed clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinKl committed Dec 15, 2024
1 parent ccfe8da commit 7ad6b31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manipulator/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ fn gather_link_data(
for value_index in value_indices {
if let Some((anno_key, value_node_id)) = group_of_bundles.get(*value_index - 1) {
if let Some(anno_value) =
node_annos.get_value_for_item(&value_node_id, anno_key)?
node_annos.get_value_for_item(value_node_id, anno_key)?
{
value_segments.push(anno_value.trim().to_lowercase()); // simply concatenate values
}
Expand Down

0 comments on commit 7ad6b31

Please sign in to comment.