Fix links for `AllocInit` methods

This commit is contained in:
Tim Diekmann 2020-03-29 12:00:35 +02:00
parent fcd7092ae1
commit c49f28005d
1 changed files with 2 additions and 2 deletions

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]: ../../core/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]: ../../core/ptr/index.html#safety
#[inline]
#[unstable(feature = "allocator_api", issue = "32838")]
pub unsafe fn init_offset(self, memory: MemoryBlock, offset: usize) {