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 64e53a5 commit 41409d2Copy full SHA for 41409d2
crates/cli-support/src/js/mod.rs
@@ -3356,7 +3356,7 @@ fn check_duplicated_getter_and_setter_names(
3356
fn format_doc_comments(comments: &str, js_doc_comments: Option<String>) -> String {
3357
let body: String = comments.lines().map(|c| format!("*{}\n", c)).collect();
3358
let doc = if let Some(docs) = js_doc_comments {
3359
- docs.lines().map(|l| format!("* {} \n", l)).collect()
+ docs.lines().map(|l| format!("* {}\n", l)).collect()
3360
} else {
3361
String::new()
3362
};
0 commit comments