Skip to content

Commit

Permalink
Merge pull request #439 from fmckeogh/main
Browse files Browse the repository at this point in the history
Fix doc comment and error message only referencing the BIOS but used for UEFI
  • Loading branch information
phil-opp authored May 1, 2024
2 parents b7e2760 + 63a01e0 commit 972aaa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ impl DiskImageBuilder {

let out_file = NamedTempFile::new().context("failed to create temp file")?;
fat::create_fat_filesystem(local_map, out_file.path())
.context("failed to create BIOS FAT filesystem")?;
.context("failed to create FAT filesystem")?;

Ok(out_file)
}
Expand Down
2 changes: 1 addition & 1 deletion src/uefi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use bootloader_boot_config::BootConfig;

use crate::DiskImageBuilder;

/// Create disk images for booting on legacy BIOS systems.
/// Create disk images for booting on UEFI systems.
pub struct UefiBoot {
image_builder: DiskImageBuilder,
}
Expand Down

0 comments on commit 972aaa7

Please sign in to comment.