Skip to content

Commit

Permalink
add a missing whitespace between # Heading
Browse files Browse the repository at this point in the history
  • Loading branch information
hsjobeki committed Jan 3, 2024
1 parent 203c7b4 commit 7ca1b1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ fn handle_heading(line: &str, levels: usize) -> String {
_ => "#".repeat(hashes.len() + levels),
};

format!("{leading_trivials}{new_hashes}{rest}")
format!("{leading_trivials}{new_hashes} {rest}")
}

/// Dumb, mutable, hacky doc comment "parser".
Expand Down

0 comments on commit 7ca1b1f

Please sign in to comment.