1
0
mirror of https://github.com/containers/bootc.git synced 2026-02-05 15:45:53 +01:00

Merge pull request #1381 from leopardracer/main

Fix typos in code comments
This commit is contained in:
Colin Walters
2025-06-23 10:35:02 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -554,7 +554,7 @@ async fn deploy(
};
// Clone all the things to move to worker thread
let sysroot_clone = sysroot.sysroot.clone();
// ostree::Deployment is incorrently !Send 😢 so convert it to an integer
// ostree::Deployment is incorrectly !Send 😢 so convert it to an integer
let merge_deployment = merge_deployment.map(|d| d.index() as usize);
let stateroot = stateroot.to_string();
let ostree_commit = image.ostree_commit.to_string();

View File

@@ -3,7 +3,7 @@
//! # Extension of encapsulation support
//!
//! This code supports ingesting arbitrary layered container images from an ostree-exported
//! base. See [`encapsulate`][`super::encapsulate()`] for more information on encaspulation of images.
//! base. See [`encapsulate`][`super::encapsulate()`] for more information on encapsulation of images.
use super::*;
use crate::chunking::{self, Chunk};