From 2c1918d0590220b267034db59911c4bd7a56bb0e Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 28 Aug 2023 19:05:55 +0200 Subject: [PATCH] doc fixes --- satrs-core/src/pool.rs | 2 +- satrs-core/src/tmtc/pus_distrib.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/satrs-core/src/pool.rs b/satrs-core/src/pool.rs index 526bac3..3e644d3 100644 --- a/satrs-core/src/pool.rs +++ b/satrs-core/src/pool.rs @@ -344,7 +344,7 @@ mod alloc_mod { } /// Pool implementation providing sub-pools with fixed size memory blocks. More details in - /// the [module documentation][super::pool] + /// the [module documentation][crate::pool] pub struct LocalPool { pool_cfg: PoolCfg, pool: Vec>, diff --git a/satrs-core/src/tmtc/pus_distrib.rs b/satrs-core/src/tmtc/pus_distrib.rs index 8fabf6e..0023227 100644 --- a/satrs-core/src/tmtc/pus_distrib.rs +++ b/satrs-core/src/tmtc/pus_distrib.rs @@ -9,8 +9,8 @@ //! [ReceivesTcCore] trait which allows to pass raw packets, CCSDS packets and PUS TC packets into //! it. Upon receiving a packet, it performs the following steps: //! -//! 1. It tries to extract the [SpHeader] and [PusTc] objects from the raw bytestream. If this -//! process fails, a [PusDistribError::PusError] is returned to the user. +//! 1. It tries to extract the [SpHeader] and [spacepackets::ecss::tc::PusTc] objects from the raw +//! bytestream. If this process fails, a [PusDistribError::PusError] is returned to the user. //! 2. If it was possible to extract both components, the packet will be passed to the //! [PusServiceProvider::handle_pus_tc_packet] method provided by the user. //!