Skip to content

Commit beb35c3

Browse files
committed
Fix capitalization
1 parent 2c7f5b8 commit beb35c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/ra_ide/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ impl Analysis {
296296
file_id: frange.file_id,
297297
edit: join_lines::join_lines(&parse.tree(), frange.range),
298298
};
299-
SourceChange::source_file_edit("join lines", file_edit)
299+
SourceChange::source_file_edit("Join lines", file_edit)
300300
})
301301
}
302302

@@ -490,7 +490,7 @@ impl Analysis {
490490
) -> Cancelable<Result<SourceChange, SsrError>> {
491491
self.with_db(|db| {
492492
let edits = ssr::parse_search_replace(query, parse_only, db)?;
493-
Ok(SourceChange::source_file_edits("ssr", edits))
493+
Ok(SourceChange::source_file_edits("Structural Search Replace", edits))
494494
})
495495
}
496496

0 commit comments

Comments
 (0)