@@ -1448,8 +1448,8 @@ any high-order bits of `rhs` that would cause the shift to exceed the bitwidth o
1448
1448
1449
1449
Note that this is *not* the same as a rotate-left; the RHS of a wrapping shift-left is restricted to
1450
1450
the range of the type, rather than the bits shifted out of the LHS being returned to the other end.
1451
- The primitive integer types all implement a `rotate_left` function, which may be what you want
1452
- instead.
1451
+ The primitive integer types all implement a `[` rotate_left`](#method.rotate_left) function,
1452
+ which may be what you want instead.
1453
1453
1454
1454
# Examples
1455
1455
@@ -1480,8 +1480,8 @@ removes any high-order bits of `rhs` that would cause the shift to exceed the bi
1480
1480
1481
1481
Note that this is *not* the same as a rotate-right; the RHS of a wrapping shift-right is restricted
1482
1482
to the range of the type, rather than the bits shifted out of the LHS being returned to the other
1483
- end. The primitive integer types all implement a `rotate_right` function, which may be what you want
1484
- instead.
1483
+ end. The primitive integer types all implement a [ `rotate_right`](#method.rotate_right) function,
1484
+ which may be what you want instead.
1485
1485
1486
1486
# Examples
1487
1487
@@ -3508,8 +3508,8 @@ Note that this is *not* the same as a rotate-left; the
3508
3508
RHS of a wrapping shift-left is restricted to the range
3509
3509
of the type, rather than the bits shifted out of the LHS
3510
3510
being returned to the other end. The primitive integer
3511
- types all implement a `rotate_left` function, which may
3512
- be what you want instead.
3511
+ types all implement a [ `rotate_left`](#method.rotate_left) function,
3512
+ which may be what you want instead.
3513
3513
3514
3514
# Examples
3515
3515
@@ -3542,8 +3542,8 @@ Note that this is *not* the same as a rotate-right; the
3542
3542
RHS of a wrapping shift-right is restricted to the range
3543
3543
of the type, rather than the bits shifted out of the LHS
3544
3544
being returned to the other end. The primitive integer
3545
- types all implement a `rotate_right` function, which may
3546
- be what you want instead.
3545
+ types all implement a [ `rotate_right`](#method.rotate_right) function,
3546
+ which may be what you want instead.
3547
3547
3548
3548
# Examples
3549
3549
0 commit comments