diff --git a/to/README.md b/to/README.md index 9043652..a835887 100644 --- a/to/README.md +++ b/to/README.md @@ -24,7 +24,7 @@ where T: BitXorAssign + Clone, { // Custom implementations of the to trait can be created, but the easiest - // way to create them is to use the provided helper functions like with_destination. + // way to create them is to use the provided helper functions like with_destination. with_destination(move |dst: &mut [T]| { assert!(src.len() == dst.len()); for (d, s) in dst.iter_mut().zip(src.iter()) { diff --git a/to/src/to/to_trait.rs b/to/src/to/to_trait.rs index 86325cc..807b172 100644 --- a/to/src/to/to_trait.rs +++ b/to/src/to/to_trait.rs @@ -1,4 +1,5 @@ -//! TODO: Mod docu +//! Module that contains the [To] crate which is the container used to +//! implement the core functionality of this crate. use crate::{Beside, CondenseBeside}; use std::borrow::BorrowMut;