From 2cb6a0ffe715d88482ccb9573513ebb9e53c63f0 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 20 May 2020 14:51:51 +0200 Subject: [PATCH] Fix docs.rs anchor name --- .../second-edition/posts/09-paging-implementation/index.md | 2 +- blog/content/second-edition/posts/10-heap-allocation/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/blog/content/second-edition/posts/09-paging-implementation/index.md b/blog/content/second-edition/posts/09-paging-implementation/index.md index 70780583..00c5e997 100644 --- a/blog/content/second-edition/posts/09-paging-implementation/index.md +++ b/blog/content/second-edition/posts/09-paging-implementation/index.md @@ -608,7 +608,7 @@ The base of the abstraction are two traits that define various page table mappin [`Mapper`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/mapper/trait.Mapper.html [`translate_page`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/mapper/trait.Mapper.html#tymethod.translate_page -[`map_to`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/mapper/trait.Mapper.html#tymethod.map_to +[`map_to`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/mapper/trait.Mapper.html#method.map_to [`MapperAllSizes`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/mapper/trait.MapperAllSizes.html [`translate_addr`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/mapper/trait.MapperAllSizes.html#method.translate_addr [`translate`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/mapper/trait.MapperAllSizes.html#tymethod.translate diff --git a/blog/content/second-edition/posts/10-heap-allocation/index.md b/blog/content/second-edition/posts/10-heap-allocation/index.md index 1f723bfa..2045729f 100644 --- a/blog/content/second-edition/posts/10-heap-allocation/index.md +++ b/blog/content/second-edition/posts/10-heap-allocation/index.md @@ -439,7 +439,7 @@ The function takes mutable references to a [`Mapper`] and a [`FrameAllocator`] i [`Size4KiB`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/page/enum.Size4KiB.html [`Result`]: https://doc.rust-lang.org/core/result/enum.Result.html [`MapToError`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/mapper/enum.MapToError.html -[`Mapper::map_to`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/mapper/trait.Mapper.html#tymethod.map_to +[`Mapper::map_to`]: https://docs.rs/x86_64/0.11.0/x86_64/structures/paging/mapper/trait.Mapper.html#method.map_to The implementation can be broken down into two parts: