From e20576f7eff3dcbd0f99364ee891199e5cbdea7c Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 15 Apr 2024 18:44:35 +0200 Subject: [PATCH] minor docs update --- satrs/src/encoding/ccsds.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/satrs/src/encoding/ccsds.rs b/satrs/src/encoding/ccsds.rs index 1aef8e4..0a6b8e4 100644 --- a/satrs/src/encoding/ccsds.rs +++ b/satrs/src/encoding/ccsds.rs @@ -5,14 +5,14 @@ use crate::{tmtc::PacketSenderRaw, ComponentId}; #[derive(Debug, Copy, Clone, PartialEq, Eq)] pub enum SpacePacketValidation { Valid, - /// The space packet header can be assumed to have a valid format, but the packet should + /// The space packet can be assumed to have a valid format, but the packet should /// be ignored. Ignore, /// The space packet or space packet header has an invalid format, for example a CRC check /// failed. In that case, the parser loses the packet synchronization and needs to check for /// the start of a new space packet header start again. The space packet header - /// [spacepackets::PacketId] can be used as a synchronization marker to detect the validity - /// of a packet. + /// [spacepackets::PacketId] can be used as a synchronization marker to detect the start + /// of a possible valid packet again. Invalid, }