Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/relationship-particles.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion utils/src/iterators.rs
Original file line number Diff line number Diff line change
@@ -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<I>(
it: I,
Expand Down