From acb9cdf1b141c821abd63352a949ea0e18beb0ac Mon Sep 17 00:00:00 2001 From: Eric Curtin Date: Wed, 18 Feb 2026 14:15:06 +0000 Subject: [PATCH] Clarify memory argument unit in help text Specify that the memory argument expects a value in MiB to avoid ambiguity for users about the expected unit of measurement. Signed-off-by: Eric Curtin --- src/cmdline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmdline.rs b/src/cmdline.rs index b81f72f..e2cadc9 100644 --- a/src/cmdline.rs +++ b/src/cmdline.rs @@ -20,7 +20,7 @@ pub struct Args { #[arg(long, short)] pub cpus: u8, - /// Amount of RAM available to VM. + /// Amount of RAM available to VM, in MiB. #[arg(long, short)] pub memory: u32,