Skip to content

Commit 819e83f

Browse files
Fix formatting
1 parent 9254952 commit 819e83f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

library/core/src/num/saturating.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ use crate::ops::{Sub, SubAssign};
3535
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Default, Hash)]
3636
#[repr(transparent)]
3737
#[rustc_diagnostic_item = "Saturating"]
38-
pub struct Saturating<T>(
39-
#[stable(feature = "saturating_int_impl", since = "1.74.0")] pub T,
40-
);
38+
pub struct Saturating<T>(#[stable(feature = "saturating_int_impl", since = "1.74.0")] pub T);
4139

4240
#[stable(feature = "saturating_int_impl", since = "1.74.0")]
4341
impl<T: fmt::Debug> fmt::Debug for Saturating<T> {

0 commit comments

Comments
 (0)