@@ -346,7 +346,7 @@ $EndFeature, "
346346 concat!( "Shifts the bits to the left by a specified amount, `n`,
347347wrapping the truncated bits to the end of the resulting integer.
348348
349- Please note this isn't the same operation as `<<`!
349+ Please note this isn't the same operation as the `<<` shifting operator !
350350
351351# Examples
352352
@@ -370,7 +370,7 @@ assert_eq!(n.rotate_left(", $rot, "), m);
370370wrapping the truncated bits to the beginning of the resulting
371371integer.
372372
373- Please note this isn't the same operation as `>>`!
373+ Please note this isn't the same operation as the `>>` shifting operator !
374374
375375# Examples
376376
@@ -2300,7 +2300,7 @@ assert_eq!(n.trailing_zeros(), 3);", $EndFeature, "
23002300 concat!( "Shifts the bits to the left by a specified amount, `n`,
23012301wrapping the truncated bits to the end of the resulting integer.
23022302
2303- Please note this isn't the same operation as `<<`!
2303+ Please note this isn't the same operation as the `<<` shifting operator !
23042304
23052305# Examples
23062306
@@ -2324,7 +2324,7 @@ assert_eq!(n.rotate_left(", $rot, "), m);
23242324wrapping the truncated bits to the beginning of the resulting
23252325integer.
23262326
2327- Please note this isn't the same operation as `>>`!
2327+ Please note this isn't the same operation as the `>>` shifting operator !
23282328
23292329# Examples
23302330
0 commit comments