@@ -346,7 +346,7 @@ $EndFeature, "
346
346
concat!( "Shifts the bits to the left by a specified amount, `n`,
347
347
wrapping the truncated bits to the end of the resulting integer.
348
348
349
- Please note this isn't the same operation as `<<`!
349
+ Please note this isn't the same operation as the `<<` shifting operator !
350
350
351
351
# Examples
352
352
@@ -370,7 +370,7 @@ assert_eq!(n.rotate_left(", $rot, "), m);
370
370
wrapping the truncated bits to the beginning of the resulting
371
371
integer.
372
372
373
- Please note this isn't the same operation as `>>`!
373
+ Please note this isn't the same operation as the `>>` shifting operator !
374
374
375
375
# Examples
376
376
@@ -2300,7 +2300,7 @@ assert_eq!(n.trailing_zeros(), 3);", $EndFeature, "
2300
2300
concat!( "Shifts the bits to the left by a specified amount, `n`,
2301
2301
wrapping the truncated bits to the end of the resulting integer.
2302
2302
2303
- Please note this isn't the same operation as `<<`!
2303
+ Please note this isn't the same operation as the `<<` shifting operator !
2304
2304
2305
2305
# Examples
2306
2306
@@ -2324,7 +2324,7 @@ assert_eq!(n.rotate_left(", $rot, "), m);
2324
2324
wrapping the truncated bits to the beginning of the resulting
2325
2325
integer.
2326
2326
2327
- Please note this isn't the same operation as `>>`!
2327
+ Please note this isn't the same operation as the `>>` shifting operator !
2328
2328
2329
2329
# Examples
2330
2330
0 commit comments