From 28200ebc04efe2c256cb35826137368aa8d1fe4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Rativel?= Date: Tue, 9 May 2023 19:18:40 +0200 Subject: [PATCH] small fix in mmu.rs documentation --- src/simulator/mmu.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/simulator/mmu.rs b/src/simulator/mmu.rs index 1d1d9de..b97313d 100644 --- a/src/simulator/mmu.rs +++ b/src/simulator/mmu.rs @@ -9,9 +9,9 @@ use crate::simulator::translationtable::*; use crate::simulator::machine::*; -//! # Memory Management Unit -//! An MMU possesses a single reference to a translation table -//! This table is associated to the current process +/// # Memory Management Unit +/// An MMU possesses a single reference to a translation table +/// This table is associated to the current process pub struct MMU <'a>{ /// Reference to a page table translationTable : Option<&'a mut TranslationTable>,