From 5b7e18a8604e4664ca185c1b331566301c6c157f Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Sun, 11 Sep 2022 16:30:47 +0200 Subject: [PATCH] some doc typos --- fsrc-core/src/pool.rs | 2 +- fsrc-core/src/pus/verification.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fsrc-core/src/pool.rs b/fsrc-core/src/pool.rs index 66b68a5..8411a35 100644 --- a/fsrc-core/src/pool.rs +++ b/fsrc-core/src/pool.rs @@ -6,7 +6,7 @@ //! embedded environments. The pool implementation will also track the size of the data stored //! inside it. //! -//! Transaction with the [pool][LocalPool] are done using a special [address][StoreAddr] type. +//! Transactions with the [pool][LocalPool] are done using a special [address][StoreAddr] type. //! Adding any data to the pool will yield a store address. Modification and read operations are //! done using a reference to a store address. Deletion will consume the store address. //! diff --git a/fsrc-core/src/pus/verification.rs b/fsrc-core/src/pus/verification.rs index 08d4cd7..095649d 100644 --- a/fsrc-core/src/pus/verification.rs +++ b/fsrc-core/src/pus/verification.rs @@ -10,7 +10,7 @@ //! # Examples //! //! Basic single-threaded example where a full success sequence for a given ping telecommand is -//! executed. Note that the verification port could also be done in a separate thread. +//! executed. Note that the verification part could also be done in a separate thread. //! //! ``` //! use std::sync::{Arc, RwLock};