aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_mbe/src/syntax_bridge.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_mbe/src/syntax_bridge.rs')
-rw-r--r--crates/ra_mbe/src/syntax_bridge.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_mbe/src/syntax_bridge.rs b/crates/ra_mbe/src/syntax_bridge.rs
index 8b4098c4a..63ca54cc2 100644
--- a/crates/ra_mbe/src/syntax_bridge.rs
+++ b/crates/ra_mbe/src/syntax_bridge.rs
@@ -135,7 +135,7 @@ fn doc_comment_text(comment: &ast::Comment) -> SmolStr {
135 135
136 // Quote the string 136 // Quote the string
137 // Note that `tt::Literal` expect an escaped string 137 // Note that `tt::Literal` expect an escaped string
138 let text = format!("{:?}", text); 138 let text = format!("\"{}\"", text.escape_default());
139 text.into() 139 text.into()
140} 140}
141 141