f89cd3c1f3
Fixes 5835 Ordered markdown lists start with 0-9 digits followed by a `.` or a `)`. Now, rustfmt ensure that the `.` or `)` is only preceded by numeric characters before deciding that it's reached an `ItemizedBlock`
9 lines
90 B
Rust
9 lines
90 B
Rust
// rustfmt-wrap_comments: true
|
|
|
|
/// . a
|
|
pub fn foo() {}
|
|
|
|
pub fn main() {
|
|
// . a
|
|
}
|