mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 09:27:27 +00:00
reformat
This commit is contained in:
parent
f88e0700e6
commit
e096867ada
2 changed files with 3 additions and 2 deletions
|
@ -326,7 +326,9 @@ impl AnalysisImpl {
|
|||
pub fn doc_text_for(&self, file_id: FileId, symbol: FileSymbol) -> Cancelable<Option<String>> {
|
||||
let file = self.db.source_file(file_id);
|
||||
let result = match (symbol.description(&file), symbol.docs(&file)) {
|
||||
(Some(desc), Some(docs)) => Some("```rust\n".to_string() + &*desc + "\n```\n\n" + &*docs),
|
||||
(Some(desc), Some(docs)) => {
|
||||
Some("```rust\n".to_string() + &*desc + "\n```\n\n" + &*docs)
|
||||
}
|
||||
(Some(desc), None) => Some("```rust\n".to_string() + &*desc + "\n```"),
|
||||
(None, Some(docs)) => Some(docs),
|
||||
_ => None,
|
||||
|
|
|
@ -530,7 +530,6 @@ pub fn handle_hover(
|
|||
Ok(None)
|
||||
}
|
||||
|
||||
|
||||
/// Test doc comment
|
||||
pub fn handle_prepare_rename(
|
||||
world: ServerWorld,
|
||||
|
|
Loading…
Reference in a new issue