Browse Source

fix unsigned_shr docs

lcnr/Bastian Kauschke 6 years ago
parent
commit
8ac6a62a6e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/int.rs

+ 2 - 2
src/int.rs

@@ -171,8 +171,8 @@ pub trait PrimInt:
     /// ```
     /// use num_traits::PrimInt;
     ///
-    /// let n = 0xFEDCBA9876543210i64;
-    /// let m = 0x000FEDCBA9876543i64;
+    /// let n = 0x0123456789ABCDEFi64;
+    /// let m = 0x0000123456789ABCi64;
     ///
     /// assert_eq!(n.unsigned_shr(12), m);
     /// ```