]> git.lizzy.rs Git - rust.git/blobdiff - library/core/src/alloc/layout.rs
Use intra-doc links
[rust.git] / library / core / src / alloc / layout.rs
index 7129f0f24029187bbb93712012dbf5c232f8501f..0b680d3c3be2fe57188c64b3cecc446f09f039bc 100644 (file)
@@ -145,7 +145,7 @@ pub fn for_value<T: ?Sized>(t: &T) -> Self {
     ///
     /// - If `T` is `Sized`, this function is always safe to call.
     /// - If the unsized tail of `T` is:
-    ///     - a [slice], then the length of the slice tail must be an intialized
+    ///     - a [`crate::slice`], then the length of the slice tail must be an intialized
     ///       integer, and the size of the *entire value*
     ///       (dynamic tail length + statically sized prefix) must fit in `isize`.
     ///     - a [trait object], then the vtable part of the pointer must point
@@ -158,7 +158,6 @@ pub fn for_value<T: ?Sized>(t: &T) -> Self {
     ///       [`Layout::for_value`] on a reference to an extern type tail.
     ///     - otherwise, it is conservatively not allowed to call this function.
     ///
-    /// [slice]: ../../std/primitive.slice.html
     /// [trait object]: ../../book/ch17-02-trait-objects.html
     /// [extern type]: ../../unstable-book/language-features/extern-types.html
     #[unstable(feature = "layout_for_ptr", issue = "69835")]