diff --git a/src/doc/src/reference/semver.md b/src/doc/src/reference/semver.md index 6c8308403d9..5336806502f 100644 --- a/src/doc/src/reference/semver.md +++ b/src/doc/src/reference/semver.md @@ -1158,9 +1158,14 @@ pub struct Foo { } pub enum Bar { - #[non_exhaustive] X, - #[non_exhaustive] Y(usize), - #[non_exhaustive] Z { a: usize }, + #[non_exhaustive] + X, + + #[non_exhaustive] + Y(usize), + + #[non_exhaustive] + Z { a: usize }, } #[non_exhaustive]