diff --git a/docs/src/relationship-particles.md b/docs/src/relationship-particles.md index ce5675138..6ea539b51 100644 --- a/docs/src/relationship-particles.md +++ b/docs/src/relationship-particles.md @@ -211,7 +211,7 @@ Here, we circle back to [composefs](https://github.com/containers/composefs). O think of composefs as effectively a way to manage something like dm-verity, but using files. -What bootc builds on top of that is to target a specfic container image rootfs +What bootc builds on top of that is to target a specific container image rootfs that is part of the "physical" root. Today, this is implemented again using ostree, via the `ostree=` kernel commandline argument. In the future, it is likely to be a `bootc.image`. However, integration with other bootloaders (such as Android Boot) require us to interact with externally-specified fixed kernel arguments. diff --git a/utils/src/iterators.rs b/utils/src/iterators.rs index 612e95070..df1d3c9af 100644 --- a/utils/src/iterators.rs +++ b/utils/src/iterators.rs @@ -1,6 +1,6 @@ use std::num::NonZeroUsize; -/// Given an iterator that's clonable, split it into two iterators +/// Given an iterator that's cloneable, split it into two iterators /// at a given maximum number of elements. pub fn iterator_split( it: I,