@@ -988,7 +988,7 @@ impl<T: ?Sized> NonNull<T> {
988
988
unsafe { ptr:: read_unaligned ( self . as_ptr ( ) ) }
989
989
}
990
990
991
- /// Copies `count * size_of<T>` bytes from `self` to `dest`. The source
991
+ /// Copies `count * size_of:: <T>() ` bytes from `self` to `dest`. The source
992
992
/// and destination may overlap.
993
993
///
994
994
/// NOTE: this has the *same* argument order as [`ptr::copy`].
@@ -1008,7 +1008,7 @@ impl<T: ?Sized> NonNull<T> {
1008
1008
unsafe { ptr:: copy ( self . as_ptr ( ) , dest. as_ptr ( ) , count) }
1009
1009
}
1010
1010
1011
- /// Copies `count * size_of<T>` bytes from `self` to `dest`. The source
1011
+ /// Copies `count * size_of:: <T>() ` bytes from `self` to `dest`. The source
1012
1012
/// and destination may *not* overlap.
1013
1013
///
1014
1014
/// NOTE: this has the *same* argument order as [`ptr::copy_nonoverlapping`].
@@ -1028,7 +1028,7 @@ impl<T: ?Sized> NonNull<T> {
1028
1028
unsafe { ptr:: copy_nonoverlapping ( self . as_ptr ( ) , dest. as_ptr ( ) , count) }
1029
1029
}
1030
1030
1031
- /// Copies `count * size_of<T>` bytes from `src` to `self`. The source
1031
+ /// Copies `count * size_of:: <T>() ` bytes from `src` to `self`. The source
1032
1032
/// and destination may overlap.
1033
1033
///
1034
1034
/// NOTE: this has the *opposite* argument order of [`ptr::copy`].
@@ -1048,7 +1048,7 @@ impl<T: ?Sized> NonNull<T> {
1048
1048
unsafe { ptr:: copy ( src. as_ptr ( ) , self . as_ptr ( ) , count) }
1049
1049
}
1050
1050
1051
- /// Copies `count * size_of<T>` bytes from `src` to `self`. The source
1051
+ /// Copies `count * size_of:: <T>() ` bytes from `src` to `self`. The source
1052
1052
/// and destination may *not* overlap.
1053
1053
///
1054
1054
/// NOTE: this has the *opposite* argument order of [`ptr::copy_nonoverlapping`].
0 commit comments