We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ce9598 commit 6b8d970Copy full SHA for 6b8d970
src/lib.rs
@@ -37,8 +37,9 @@ const KERNEL_FILE_NAME: &str = "kernel-x86_64";
37
const RAMDISK_FILE_NAME: &str = "ramdisk";
38
const CONFIG_FILE_NAME: &str = "boot.json";
39
40
-/// DiskImageBuilder helps create disk images for a specified set of files.
41
-/// It can currently create MBR (BIOS), GPT (UEFI), and TFTP (UEFI) images.
+/// Allows creating disk images for a specified set of files.
+///
42
+/// It can currently create `MBR` (BIOS), `GPT` (UEFI), and `TFTP` (UEFI) images.
43
pub struct DiskImageBuilder {
44
files: BTreeMap<String, FileDataSource>,
45
}
0 commit comments