@@ -1093,7 +1093,6 @@ impl<T: ?Sized> Box<T> {
10931093 /// ```
10941094 ///
10951095 /// [memory layout]: self#memory-layout
1096- /// [`Layout`]: crate::Layout
10971096 #[ stable( feature = "box_raw" , since = "1.4.0" ) ]
10981097 #[ inline]
10991098 #[ must_use = "call `drop(Box::from_raw(ptr))` if you intend to drop the `Box`" ]
@@ -1148,7 +1147,6 @@ impl<T: ?Sized> Box<T> {
11481147 /// ```
11491148 ///
11501149 /// [memory layout]: self#memory-layout
1151- /// [`Layout`]: crate::Layout
11521150 #[ unstable( feature = "box_vec_non_null" , reason = "new API" , issue = "130364" ) ]
11531151 #[ inline]
11541152 #[ must_use = "call `drop(Box::from_non_null(ptr))` if you intend to drop the `Box`" ]
@@ -1205,7 +1203,6 @@ impl<T: ?Sized, A: Allocator> Box<T, A> {
12051203 /// ```
12061204 ///
12071205 /// [memory layout]: self#memory-layout
1208- /// [`Layout`]: crate::Layout
12091206 #[ unstable( feature = "allocator_api" , issue = "32838" ) ]
12101207 #[ rustc_const_unstable( feature = "const_box" , issue = "92521" ) ]
12111208 #[ inline]
@@ -1259,7 +1256,6 @@ impl<T: ?Sized, A: Allocator> Box<T, A> {
12591256 /// ```
12601257 ///
12611258 /// [memory layout]: self#memory-layout
1262- /// [`Layout`]: crate::Layout
12631259 #[ unstable( feature = "allocator_api" , issue = "32838" ) ]
12641260 // #[unstable(feature = "box_vec_non_null", reason = "new API", issue = "130364")]
12651261 #[ rustc_const_unstable( feature = "const_box" , issue = "92521" ) ]
0 commit comments