Fix links for AllocInit methods

This commit is contained in:
Tim Diekmann 2020-03-29 03:16:23 +01:00
parent 4309f6d9a1
commit d241db2d4e

View File

@ -52,7 +52,7 @@ impl AllocInit {
///
/// * `memory.ptr` must be [valid] for writes of `memory.size` bytes.
///
/// [valid]: ../ptr/index.html#safety
/// [valid]: ../../ptr/index.html#safety
#[inline]
#[unstable(feature = "allocator_api", issue = "32838")]
pub unsafe fn init(self, memory: MemoryBlock) {
@ -69,7 +69,7 @@ impl AllocInit {
/// * `memory.ptr` must be [valid] for writes of `memory.size` bytes.
/// * `offset` must be smaller than or equal to `memory.size`
///
/// [valid]: ../ptr/index.html#safety
/// [valid]: ../../ptr/index.html#safety
#[inline]
#[unstable(feature = "allocator_api", issue = "32838")]
pub unsafe fn init_offset(self, memory: MemoryBlock, offset: usize) {