diff --git a/src/kernel/system.rs b/src/kernel/system.rs index 3e526f3..2f681c5 100644 --- a/src/kernel/system.rs +++ b/src/kernel/system.rs @@ -1,3 +1,7 @@ +//! # System module +//! +//! Module containing structs and methods pertaining to the state of the operating system + use std::{cell::RefCell, rc::Rc}; use crate::simulator::machine::Machine; diff --git a/src/utility/list.rs b/src/utility/list.rs index b3cc66f..bfb3207 100644 --- a/src/utility/list.rs +++ b/src/utility/list.rs @@ -1,7 +1,5 @@ +//! Data structure and definition of a genericsingle-linked LIFO list. -/// Data structure and definition of a genericsingle-linked LIFO list. -/// -/// This is a #[derive(PartialEq)] pub struct List { head: Link,