We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c7f5b8 commit beb35c3Copy full SHA for beb35c3
crates/ra_ide/src/lib.rs
@@ -296,7 +296,7 @@ impl Analysis {
296
file_id: frange.file_id,
297
edit: join_lines::join_lines(&parse.tree(), frange.range),
298
};
299
- SourceChange::source_file_edit("join lines", file_edit)
+ SourceChange::source_file_edit("Join lines", file_edit)
300
})
301
}
302
@@ -490,7 +490,7 @@ impl Analysis {
490
) -> Cancelable<Result<SourceChange, SsrError>> {
491
self.with_db(|db| {
492
let edits = ssr::parse_search_replace(query, parse_only, db)?;
493
- Ok(SourceChange::source_file_edits("ssr", edits))
+ Ok(SourceChange::source_file_edits("Structural Search Replace", edits))
494
495
496
0 commit comments