Skip to content

Commit 300a007

Browse files
committedAug 30, 2020
Fix intra-doc path resolution problem in library/alloc/src/slice.rs
`alloc::slice` uses `core::slice` functions, documentation are copied from there and the links as well without resolution. `crate::ptr...` cannot be resolved in `alloc::slice`, but `ptr` itself is imported in both `alloc::slice` and `core::slice`, so we used that instead.
1 parent 6aae4a2 commit 300a007

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎library/core/src/slice/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -6427,8 +6427,8 @@ unsafe impl<'a, T> TrustedRandomAccess for RChunksExactMut<'a, T> {
64276427
/// }
64286428
/// ```
64296429
///
6430-
/// [valid]: crate::ptr#safety
6431-
/// [`NonNull::dangling()`]: crate::ptr::NonNull::dangling
6430+
/// [valid]: ptr#safety
6431+
/// [`NonNull::dangling()`]: ptr::NonNull::dangling
64326432
/// [`pointer::offset`]: ../../std/primitive.pointer.html#method.offset
64336433
#[inline]
64346434
#[stable(feature = "rust1", since = "1.0.0")]
@@ -6467,8 +6467,8 @@ pub unsafe fn from_raw_parts<'a, T>(data: *const T, len: usize) -> &'a [T] {
64676467
/// * The total size `len * mem::size_of::<T>()` of the slice must be no larger than `isize::MAX`.
64686468
/// See the safety documentation of [`pointer::offset`].
64696469
///
6470-
/// [valid]: crate::ptr#safety
6471-
/// [`NonNull::dangling()`]: crate::ptr::NonNull::dangling
6470+
/// [valid]: ptr#safety
6471+
/// [`NonNull::dangling()`]: ptr::NonNull::dangling
64726472
/// [`pointer::offset`]: ../../std/primitive.pointer.html#method.offset
64736473
#[inline]
64746474
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)
Please sign in to comment.