Fix parsing '#'-hiding of rustdoc
This commit is contained in:
parent
b2a80f9942
commit
2eca09e438
1 changed files with 1 additions and 1 deletions
|
|
@ -500,7 +500,7 @@ fn rewrite_comment_inner(
|
|||
const RUSTFMT_CUSTOM_COMMENT_PREFIX: &str = "//#### ";
|
||||
|
||||
fn hide_sharp_behind_comment<'a>(s: &'a str) -> Cow<'a, str> {
|
||||
if s.trim_left().starts_with('#') {
|
||||
if s.trim_left().starts_with("# ") {
|
||||
Cow::from(format!("{}{}", RUSTFMT_CUSTOM_COMMENT_PREFIX, s))
|
||||
} else {
|
||||
Cow::from(s)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue