You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Paraphrased from my earlier post. Given the following code:
/// This is a doc comment with two paragraphs.
///
/// Not actually.
pub fn a() {
}
/**
* This is a doc comment with two paragraphs.
*
* Really.
*/
pub fn b() {
}
...rustdoc produces two paragraphs for b but one paragraph for a (behaves as if there are no empty lines). I have assumed that it was by design until now, but @brson considered it to be a bug.
The text was updated successfully, but these errors were encountered:
…g#5838)
Update docs to include an example of running `rustfmt` built from src,
and show how users can set the `RUSTFMT` environment variable to test
`cargo-fmt` using the `rustfmt` they built from src.
Paraphrased from my earlier post. Given the following code:
...rustdoc produces two paragraphs for
b
but one paragraph fora
(behaves as if there are no empty lines). I have assumed that it was by design until now, but @brson considered it to be a bug.The text was updated successfully, but these errors were encountered: