@@ -272,10 +272,10 @@ macro_rules! uint_impl {
272272 /// ```
273273 /// #![feature(int_lowest_highest_one)]
274274 ///
275- #[ doc = concat!( "assert_eq!(0x0_ " , stringify!( $SelfT) , ".highest_one(), None);" ) ]
276- #[ doc = concat!( "assert_eq!(0x1_ " , stringify!( $SelfT) , ".highest_one(), Some(0));" ) ]
277- #[ doc = concat!( "assert_eq!(0x10_ " , stringify!( $SelfT) , ".highest_one(), Some(4));" ) ]
278- #[ doc = concat!( "assert_eq!(0x1f_ " , stringify!( $SelfT) , ".highest_one(), Some(4));" ) ]
275+ #[ doc = concat!( "assert_eq!(0b0_ " , stringify!( $SelfT) , ".highest_one(), None);" ) ]
276+ #[ doc = concat!( "assert_eq!(0b1_ " , stringify!( $SelfT) , ".highest_one(), Some(0));" ) ]
277+ #[ doc = concat!( "assert_eq!(0b1_0000_ " , stringify!( $SelfT) , ".highest_one(), Some(4));" ) ]
278+ #[ doc = concat!( "assert_eq!(0b1_1111_ " , stringify!( $SelfT) , ".highest_one(), Some(4));" ) ]
279279 /// ```
280280 #[ unstable( feature = "int_lowest_highest_one" , issue = "145203" ) ]
281281 #[ must_use = "this returns the result of the operation, \
@@ -296,10 +296,10 @@ macro_rules! uint_impl {
296296 /// ```
297297 /// #![feature(int_lowest_highest_one)]
298298 ///
299- #[ doc = concat!( "assert_eq!(0x0_ " , stringify!( $SelfT) , ".lowest_one(), None);" ) ]
300- #[ doc = concat!( "assert_eq!(0x1_ " , stringify!( $SelfT) , ".lowest_one(), Some(0));" ) ]
301- #[ doc = concat!( "assert_eq!(0x10_ " , stringify!( $SelfT) , ".lowest_one(), Some(4));" ) ]
302- #[ doc = concat!( "assert_eq!(0x1f_ " , stringify!( $SelfT) , ".lowest_one(), Some(0));" ) ]
299+ #[ doc = concat!( "assert_eq!(0b0_ " , stringify!( $SelfT) , ".lowest_one(), None);" ) ]
300+ #[ doc = concat!( "assert_eq!(0b1_ " , stringify!( $SelfT) , ".lowest_one(), Some(0));" ) ]
301+ #[ doc = concat!( "assert_eq!(0b1_0000_ " , stringify!( $SelfT) , ".lowest_one(), Some(4));" ) ]
302+ #[ doc = concat!( "assert_eq!(0b1_1111_ " , stringify!( $SelfT) , ".lowest_one(), Some(0));" ) ]
303303 /// ```
304304 #[ unstable( feature = "int_lowest_highest_one" , issue = "145203" ) ]
305305 #[ must_use = "this returns the result of the operation, \
0 commit comments