Rename background_highlights_in_range_for_key to background_highlights_in_range_for

This commit is contained in:
Piotr Osiewicz
2023-07-11 09:31:08 +02:00
parent 4f60679861
commit e83afdc5ab
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7222,7 +7222,7 @@ impl Editor {
}
results
}
pub fn background_highlights_in_range_for_key<T: 'static>(
pub fn background_highlights_in_range_for<T: 'static>(
&self,
search_range: Range<Anchor>,
display_snapshot: &DisplaySnapshot,
+1 -1
View File
@@ -1087,7 +1087,7 @@ impl EditorElement {
}
};
for (row, _) in &editor
.background_highlights_in_range_for_key::<crate::items::BufferSearchHighlights>(
.background_highlights_in_range_for::<crate::items::BufferSearchHighlights>(
start_anchor..end_anchor,
&layout.position_map.snapshot,
&theme,