diff --git a/src/core.rs b/src/core.rs index d5d3ea7..f610f66 100644 --- a/src/core.rs +++ b/src/core.rs @@ -1,10 +1,11 @@ -//! This module contains the core components of the Flight Software Rust Crate (FSRC) collection +//! # Core components of the Flight Software Rust Crate (FSRC) collection. +//! //! This includes components to perform the following tasks //! -//! 1. [Object Management][objects] -//! 2. [Task Scheduling][executable] -//! 3. [Events][event] and [event management][event_man] -//! 4. [Pre-Allocated memory pools][pool] +//! 1. Object Management with the [objects] module +//! 2. Task schedule with the [executable] module +//! 3. Events with the [events] module and event management with the [event_man] module +//! 4. Pre-Allocated memory pools with the [pool] module pub mod event_man; pub mod events; pub mod executable;