mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Clippy lint
This commit is contained in:
parent
081e0ae8ae
commit
4f77d80e74
2 changed files with 2 additions and 15 deletions
|
@ -178,7 +178,7 @@ pub struct Syntax {
|
|||
pub(crate) root_layer: LanguageLayer,
|
||||
}
|
||||
|
||||
fn byte_range_to_str<'a>(range: std::ops::Range<usize>, source: RopeSlice<'a>) -> Cow<'a, str> {
|
||||
fn byte_range_to_str(range: std::ops::Range<usize>, source: RopeSlice) -> Cow<str> {
|
||||
let start_char = source.byte_to_char(range.start);
|
||||
let end_char = source.byte_to_char(range.end);
|
||||
Cow::from(source.slice(start_char..end_char))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue