From 84ecc6a258072206c0e8fbbdefcc2edb2ef1c0f6 Mon Sep 17 00:00:00 2001 From: Ikey Doherty Date: Tue, 11 Feb 2025 22:59:23 +0000 Subject: [PATCH] provisioning: Fix typo Signed-off-by: Ikey Doherty --- crates/provisioning/src/types/partition_table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/provisioning/src/types/partition_table.rs b/crates/provisioning/src/types/partition_table.rs index af48ece..9206f44 100644 --- a/crates/provisioning/src/types/partition_table.rs +++ b/crates/provisioning/src/types/partition_table.rs @@ -45,7 +45,7 @@ impl FromKdlProperty<'_> for PartitionTableType { let value = kdl_value_to_string(entry)?; let v = value.parse().map_err(|_| crate::UnsupportedValue { at: entry.span(), - advice: Some("'gpt' and 'mbr' are supported".into()), + advice: Some("'gpt' and 'msdos' are supported".into()), })?; Ok(v) }