summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 3b0ee85..d0b12c1 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1460,7 +1460,7 @@ fn resume_vms(args: std::env::Args) -> std::result::Result<(), ()> {
 fn balloon_vms(mut args: std::env::Args) -> std::result::Result<(), ()> {
     if args.len() < 2 {
         print_help("crosvm balloon", "SIZE VM_SOCKET...", &[]);
-        println!("Set the ballon size of the crosvm instance to `SIZE` bytes.");
+        println!("Set the balloon size of the crosvm instance to `SIZE` bytes.");
         return Err(());
     }
     let num_bytes = match args.nth(0).unwrap().parse::<u64>() {