diff options
Diffstat (limited to 'crates/ra_ssr/src')
-rw-r--r-- | crates/ra_ssr/src/replacing.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ssr/src/replacing.rs b/crates/ra_ssr/src/replacing.rs index 0943244ff..36ced3842 100644 --- a/crates/ra_ssr/src/replacing.rs +++ b/crates/ra_ssr/src/replacing.rs | |||
@@ -24,7 +24,7 @@ fn matches_to_edit_at_offset( | |||
24 | relative_start: TextSize, | 24 | relative_start: TextSize, |
25 | rules: &[ResolvedRule], | 25 | rules: &[ResolvedRule], |
26 | ) -> TextEdit { | 26 | ) -> TextEdit { |
27 | let mut edit_builder = ra_text_edit::TextEditBuilder::default(); | 27 | let mut edit_builder = TextEdit::builder(); |
28 | for m in &matches.matches { | 28 | for m in &matches.matches { |
29 | edit_builder.replace( | 29 | edit_builder.replace( |
30 | m.range.range.checked_sub(relative_start).unwrap(), | 30 | m.range.range.checked_sub(relative_start).unwrap(), |