File tree 1 file changed +1
-4
lines changed
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -669,15 +669,12 @@ macro_rules! nonzero_signed_operations {
669
669
#[ doc = concat!( "let neg = " , stringify!( $Ty) , "::new(-1)?;" ) ]
670
670
#[ doc = concat!( "let min = " , stringify!( $Ty) , "::new(" ,
671
671
stringify!( $Int) , "::MIN)?;" ) ]
672
- #[ doc = concat!( "let min_plus = " , stringify!( $Ty) , "::new(" ,
673
- stringify!( $Int) , "::MIN + 1)?;" ) ]
674
- #[ doc = concat!( "let max = " , stringify!( $Ty) , "::new(" ,
672
+ #[ doc = concat!( "# let max = " , stringify!( $Ty) , "::new(" ,
675
673
stringify!( $Int) , "::MAX)?;" ) ]
676
674
///
677
675
/// assert_eq!(pos, pos.wrapping_abs());
678
676
/// assert_eq!(pos, neg.wrapping_abs());
679
677
/// assert_eq!(min, min.wrapping_abs());
680
- /// assert_eq!(max, min_plus.wrapping_abs());
681
678
/// # // FIXME: add once Neg is implemented?
682
679
/// # // assert_eq!(max, (-max).wrapping_abs());
683
680
/// # Some(())
You can’t perform that action at this time.
0 commit comments