Skip to content

Commit 3395668

Browse files
committed
Fix non_exhaustive formatting to rustfmt's liking.
1 parent 28295a6 commit 3395668

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/doc/src/reference/semver.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1157,9 +1157,14 @@ pub struct Foo {
11571157
}
11581158
11591159
pub enum Bar {
1160-
#[non_exhaustive] X,
1161-
#[non_exhaustive] Y(usize),
1162-
#[non_exhaustive] Z { a: usize },
1160+
#[non_exhaustive]
1161+
X,
1162+
1163+
#[non_exhaustive]
1164+
Y(usize),
1165+
1166+
#[non_exhaustive]
1167+
Z { a: usize },
11631168
}
11641169
11651170
#[non_exhaustive]

0 commit comments

Comments
 (0)