@@ -506,6 +506,9 @@ mod prim_f64 { }
506
506
///
507
507
/// *[See also the `std::i8` module](i8/index.html).*
508
508
///
509
+ /// However, please note that examples are shared between primitive integer
510
+ /// types. So it's normal if you see usage of types like `i64` in there.
511
+ ///
509
512
mod prim_i8 { }
510
513
511
514
#[ doc( primitive = "i16" ) ]
@@ -514,6 +517,9 @@ mod prim_i8 { }
514
517
///
515
518
/// *[See also the `std::i16` module](i16/index.html).*
516
519
///
520
+ /// However, please note that examples are shared between primitive integer
521
+ /// types. So it's normal if you see usage of types like `i32` in there.
522
+ ///
517
523
mod prim_i16 { }
518
524
519
525
#[ doc( primitive = "i32" ) ]
@@ -522,6 +528,9 @@ mod prim_i16 { }
522
528
///
523
529
/// *[See also the `std::i32` module](i32/index.html).*
524
530
///
531
+ /// However, please note that examples are shared between primitive integer
532
+ /// types. So it's normal if you see usage of types like `i16` in there.
533
+ ///
525
534
mod prim_i32 { }
526
535
527
536
#[ doc( primitive = "i64" ) ]
@@ -530,6 +539,9 @@ mod prim_i32 { }
530
539
///
531
540
/// *[See also the `std::i64` module](i64/index.html).*
532
541
///
542
+ /// However, please note that examples are shared between primitive integer
543
+ /// types. So it's normal if you see usage of types like `i8` in there.
544
+ ///
533
545
mod prim_i64 { }
534
546
535
547
#[ doc( primitive = "u8" ) ]
@@ -538,6 +550,9 @@ mod prim_i64 { }
538
550
///
539
551
/// *[See also the `std::u8` module](u8/index.html).*
540
552
///
553
+ /// However, please note that examples are shared between primitive integer
554
+ /// types. So it's normal if you see usage of types like `u64` in there.
555
+ ///
541
556
mod prim_u8 { }
542
557
543
558
#[ doc( primitive = "u16" ) ]
@@ -546,6 +561,9 @@ mod prim_u8 { }
546
561
///
547
562
/// *[See also the `std::u16` module](u16/index.html).*
548
563
///
564
+ /// However, please note that examples are shared between primitive integer
565
+ /// types. So it's normal if you see usage of types like `u32` in there.
566
+ ///
549
567
mod prim_u16 { }
550
568
551
569
#[ doc( primitive = "u32" ) ]
@@ -554,6 +572,9 @@ mod prim_u16 { }
554
572
///
555
573
/// *[See also the `std::u32` module](u32/index.html).*
556
574
///
575
+ /// However, please note that examples are shared between primitive integer
576
+ /// types. So it's normal if you see usage of types like `u16` in there.
577
+ ///
557
578
mod prim_u32 { }
558
579
559
580
#[ doc( primitive = "u64" ) ]
@@ -562,6 +583,9 @@ mod prim_u32 { }
562
583
///
563
584
/// *[See also the `std::u64` module](u64/index.html).*
564
585
///
586
+ /// However, please note that examples are shared between primitive integer
587
+ /// types. So it's normal if you see usage of types like `u8` in there.
588
+ ///
565
589
mod prim_u64 { }
566
590
567
591
#[ doc( primitive = "isize" ) ]
@@ -570,6 +594,9 @@ mod prim_u64 { }
570
594
///
571
595
/// *[See also the `std::isize` module](isize/index.html).*
572
596
///
597
+ /// However, please note that examples are shared between primitive integer
598
+ /// types. So it's normal if you see usage of types like `usize` in there.
599
+ ///
573
600
mod prim_isize { }
574
601
575
602
#[ doc( primitive = "usize" ) ]
@@ -578,4 +605,7 @@ mod prim_isize { }
578
605
///
579
606
/// *[See also the `std::usize` module](usize/index.html).*
580
607
///
608
+ /// However, please note that examples are shared between primitive integer
609
+ /// types. So it's normal if you see usage of types like `isize` in there.
610
+ ///
581
611
mod prim_usize { }
0 commit comments