From c3b167fc9b1f19a24e7101680a64708f1a00d972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20L=C3=B3pez?= Date: Fri, 27 Oct 2023 15:13:40 +0200 Subject: [PATCH] docs/mm: fix broken link in `RawAllocMapping` field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix a broken link in the generated documentation for `RawAllocMapping`, which will cause a CI break with the upcoming changes in #124. Signed-off-by: Carlos López --- src/mm/vm/mapping/rawalloc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mm/vm/mapping/rawalloc.rs b/src/mm/vm/mapping/rawalloc.rs index 65f10b7a1..52cefcc32 100644 --- a/src/mm/vm/mapping/rawalloc.rs +++ b/src/mm/vm/mapping/rawalloc.rs @@ -20,7 +20,7 @@ pub struct RawAllocMapping { /// A vec containing references to PageFile allocations pages: Vec, - /// Number of pages required in [`pages`] + /// Number of pages required in `pages` count: usize, }