]> git.lizzy.rs Git - rust.git/commitdiff
Don't have two adjacent "see also" sentences
authorTobias Bucher <tobiasbucher5991@gmail.com>
Thu, 27 Sep 2018 07:49:12 +0000 (09:49 +0200)
committerTobias Bucher <tobiasbucher5991@gmail.com>
Thu, 27 Sep 2018 07:49:12 +0000 (09:49 +0200)
src/libcore/slice/mod.rs

index 0a719792c7f8538f36ed8560f261d2a04381f13d..a76b30260369de198321c252d42cc851fe48d1fc 100644 (file)
@@ -3893,13 +3893,11 @@ pub unsafe fn from_raw_parts<'a, T>(data: *const T, len: usize) -> &'a [T] {
 /// as not being able to provide a non-aliasing guarantee of the returned
 /// mutable slice. `data` must be non-null and aligned even for zero-length
 /// slices as with [`from_raw_parts`]. The total size of the slice must be no
-/// larger than `isize::MAX` **bytes** in memory. See the safety documentation
-/// of [`pointer::offset`].
+/// larger than `isize::MAX` **bytes** in memory.
 ///
 /// See the documentation of [`from_raw_parts`] for more details.
 ///
 /// [`from_raw_parts`]: ../../std/slice/fn.from_raw_parts.html
-/// [`pointer::offset`]: ../../std/primitive.pointer.html#method.offset
 #[inline]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub unsafe fn from_raw_parts_mut<'a, T>(data: *mut T, len: usize) -> &'a mut [T] {