From 55222d92b321ee8113761f9259c2620ad676e0e7 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 16 Apr 2024 19:17:17 +0200 Subject: [PATCH] small typo fix --- src/ecss/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ecss/mod.rs b/src/ecss/mod.rs index 9b7f37c..cfac598 100644 --- a/src/ecss/mod.rs +++ b/src/ecss/mod.rs @@ -1,8 +1,8 @@ //! Common definitions and helpers required to create PUS TMTC packets according to //! [ECSS-E-ST-70-41C](https://ecss.nl/standard/ecss-e-st-70-41c-space-engineering-telemetry-and-telecommand-packet-utilization-15-april-2016/) //! -//! You can find the PUS telecommand definitions in the [tc] module and ithe PUS telemetry definitions -//! inside the [tm] module. +//! You can find the PUS telecommand types in the [tc] module and the the PUS telemetry +//! types inside the [tm] module. use crate::{ByteConversionError, CcsdsPacket, CRC_CCITT_FALSE}; #[cfg(feature = "alloc")] use alloc::vec::Vec;