We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b7e2760 + 63a01e0 commit 972aaa7Copy full SHA for 972aaa7
src/lib.rs
@@ -216,7 +216,7 @@ impl DiskImageBuilder {
216
217
let out_file = NamedTempFile::new().context("failed to create temp file")?;
218
fat::create_fat_filesystem(local_map, out_file.path())
219
- .context("failed to create BIOS FAT filesystem")?;
+ .context("failed to create FAT filesystem")?;
220
221
Ok(out_file)
222
}
src/uefi/mod.rs
@@ -4,7 +4,7 @@ use bootloader_boot_config::BootConfig;
4
5
use crate::DiskImageBuilder;
6
7
-/// Create disk images for booting on legacy BIOS systems.
+/// Create disk images for booting on UEFI systems.
8
pub struct UefiBoot {
9
image_builder: DiskImageBuilder,
10
0 commit comments