Skip to content

Commit 972aaa7

Browse files
authored
Merge pull request #439 from fmckeogh/main
Fix doc comment and error message only referencing the BIOS but used for UEFI
2 parents b7e2760 + 63a01e0 commit 972aaa7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ impl DiskImageBuilder {
216216

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

221221
Ok(out_file)
222222
}

src/uefi/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use bootloader_boot_config::BootConfig;
44

55
use crate::DiskImageBuilder;
66

7-
/// Create disk images for booting on legacy BIOS systems.
7+
/// Create disk images for booting on UEFI systems.
88
pub struct UefiBoot {
99
image_builder: DiskImageBuilder,
1010
}

0 commit comments

Comments
 (0)