@@ -1499,8 +1499,8 @@ any high-order bits of `rhs` that would cause the shift to exceed the bitwidth o
1499
1499
1500
1500
Note that this is *not* the same as a rotate-left; the RHS of a wrapping shift-left is restricted to
1501
1501
the range of the type, rather than the bits shifted out of the LHS being returned to the other end.
1502
- The primitive integer types all implement a `rotate_left` function, which may be what you want
1503
- instead.
1502
+ The primitive integer types all implement a `[` rotate_left`](#method.rotate_left) function,
1503
+ which may be what you want instead.
1504
1504
1505
1505
# Examples
1506
1506
@@ -1531,8 +1531,8 @@ removes any high-order bits of `rhs` that would cause the shift to exceed the bi
1531
1531
1532
1532
Note that this is *not* the same as a rotate-right; the RHS of a wrapping shift-right is restricted
1533
1533
to the range of the type, rather than the bits shifted out of the LHS being returned to the other
1534
- end. The primitive integer types all implement a `rotate_right` function, which may be what you want
1535
- instead.
1534
+ end. The primitive integer types all implement a [ `rotate_right`](#method.rotate_right) function,
1535
+ which may be what you want instead.
1536
1536
1537
1537
# Examples
1538
1538
@@ -3610,8 +3610,8 @@ Note that this is *not* the same as a rotate-left; the
3610
3610
RHS of a wrapping shift-left is restricted to the range
3611
3611
of the type, rather than the bits shifted out of the LHS
3612
3612
being returned to the other end. The primitive integer
3613
- types all implement a `rotate_left` function, which may
3614
- be what you want instead.
3613
+ types all implement a [ `rotate_left`](#method.rotate_left) function,
3614
+ which may be what you want instead.
3615
3615
3616
3616
# Examples
3617
3617
@@ -3644,8 +3644,8 @@ Note that this is *not* the same as a rotate-right; the
3644
3644
RHS of a wrapping shift-right is restricted to the range
3645
3645
of the type, rather than the bits shifted out of the LHS
3646
3646
being returned to the other end. The primitive integer
3647
- types all implement a `rotate_right` function, which may
3648
- be what you want instead.
3647
+ types all implement a [ `rotate_right`](#method.rotate_right) function,
3648
+ which may be what you want instead.
3649
3649
3650
3650
# Examples
3651
3651
0 commit comments