diff options
| -rw-r--r-- | src/libcore/ptr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index 4cb9c655441..c679a1a2456 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -592,7 +592,7 @@ pub unsafe fn write<T>(dst: *mut T, src: T) { /// location pointed to by `dst`. /// /// This is appropriate for initializing uninitialized memory, or overwriting -/// memory that has previously been [`read`] from. +/// memory that has previously been read with [`read_unaligned`]. /// /// [`write`]: ./fn.write.html /// [`read_unaligned`]: ./fn.read_unaligned.html |
