diff --git a/src/liballoc/raw_vec.rs b/src/liballoc/raw_vec.rs index cbafeae6417..baa64258057 100644 --- a/src/liballoc/raw_vec.rs +++ b/src/liballoc/raw_vec.rs @@ -574,7 +574,8 @@ impl RawVec { /// /// # Safety /// - /// * `len` must be smaller than or equal to `self.capacity()` + /// `shrink_to_fit(len)` must be called immediately prior to calling this function. This + /// implies, that `len` must be smaller than or equal to `self.capacity()`. pub unsafe fn into_box(self, len: usize) -> Box<[MaybeUninit]> { debug_assert!( len <= self.capacity(),