From 1bb840d3c21cbcfaf19fa0dc4fe69a2ab981b984 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 25 Sep 2025 13:51:52 +0200 Subject: [PATCH] minor docs fixes --- src/lib.rs | 3 ++- src/source.rs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 08118ad..edbb3f8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -108,7 +108,8 @@ //! you could schedule a fixed amount of handlers inside a //! [threadpool](https://docs.rs/threadpool/latest/threadpool/). #![no_std] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +// Show which crate feature enables conditionally compiled APIs in documentation. +#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] #[cfg(feature = "alloc")] extern crate alloc; #[cfg(any(feature = "std", test))] diff --git a/src/source.rs b/src/source.rs index e640a7d..5cbf976 100644 --- a/src/source.rs +++ b/src/source.rs @@ -27,7 +27,7 @@ //! 4. A Finished PDU will be awaited, for example one generated using //! [spacepackets::cfdp::pdu::finished::FinishedPduCreator]. //! -//! ### Acknowledged transfer (*not implemented yet*) +//! ### Acknowledged transfer //! //! 4. A EOF ACK packet will be awaited, for example one generated using //! [spacepackets::cfdp::pdu::ack::AckPdu].