File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -591,7 +591,7 @@ pub unsafe fn read<T>(src: *const T) -> T {
591
591
/// whether `T` is [`Copy`]. If `T` is not [`Copy`], using both the returned
592
592
/// value and the value at `*src` can [violate memory safety][read-ownership].
593
593
///
594
- /// Note that even if `T` has size `0`, the pointer must be non-NULL and properly aligned .
594
+ /// Note that even if `T` has size `0`, the pointer must be non-NULL.
595
595
///
596
596
/// [`Copy`]: ../marker/trait.Copy.html
597
597
/// [`read`]: ./fn.read.html
@@ -759,7 +759,7 @@ pub unsafe fn write<T>(dst: *mut T, src: T) {
759
759
///
760
760
/// * `dst` must be [valid] for writes.
761
761
///
762
- /// Note that even if `T` has size `0`, the pointer must be non-NULL and properly aligned .
762
+ /// Note that even if `T` has size `0`, the pointer must be non-NULL.
763
763
///
764
764
/// [valid]: ../ptr/index.html#safety
765
765
///
You can’t perform that action at this time.
0 commit comments