diff --git a/fsrc-core/src/pus/mod.rs b/fsrc-core/src/pus/mod.rs index f8f4901..fb3a317 100644 --- a/fsrc-core/src/pus/mod.rs +++ b/fsrc-core/src/pus/mod.rs @@ -2,6 +2,6 @@ //! //! Currenty includes: //! -//! 1. PUS Verification Service 1 module inside [verification] +//! 1. PUS Verification Service 1 module inside [verification]. Requires [alloc] support. #[cfg(feature = "alloc")] pub mod verification; diff --git a/fsrc-core/src/pus/verification.rs b/fsrc-core/src/pus/verification.rs index 0066213..578986f 100644 --- a/fsrc-core/src/pus/verification.rs +++ b/fsrc-core/src/pus/verification.rs @@ -3,10 +3,10 @@ //! This module allows packaging and sending PUS Service 1 packets. It is conforming to section //! 8 of the PUS standard ECSS-E-ST-70-41C. //! -//! The core object to report TC verification progress is the [VerifictionReporter]. It exposes +//! The core object to report TC verification progress is the [VerificationReporter]. It exposes //! an API which uses type-state programming to avoid calling the verification steps in //! an invalid order. -//! +//! //! # Example //! TODO: Cross Ref integration test which will be provided use crate::pool::{LocalPool, StoreAddr, StoreError};