Skip to content

Commit

Permalink
remove extra semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk authored Sep 18, 2023
1 parent bfd2611 commit 1c89b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/egui/src/widgets/text_edit/text_buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl<'a> TextBuffer for Cow<'a, str> {
}

fn insert_text(&mut self, text: &str, char_index: usize) -> usize {
<String as TextBuffer>::insert_text(self.to_mut(), text, char_index);
<String as TextBuffer>::insert_text(self.to_mut(), text, char_index)
}

fn delete_char_range(&mut self, char_range: Range<usize>) {
Expand Down

0 comments on commit 1c89b24

Please sign in to comment.