From c332a91ef8f384f274d827e4e5229738e56afe00 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Wed, 29 Jan 2025 10:53:49 +0000 Subject: [PATCH] runtime-rs: Fix doc list item missing indentation Add the extra space to format the list correctly Signed-off-by: stevenhorsman --- src/runtime-rs/crates/hypervisor/src/qemu/cmdline_generator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime-rs/crates/hypervisor/src/qemu/cmdline_generator.rs b/src/runtime-rs/crates/hypervisor/src/qemu/cmdline_generator.rs index d41c891ad3..9f57a30b32 100644 --- a/src/runtime-rs/crates/hypervisor/src/qemu/cmdline_generator.rs +++ b/src/runtime-rs/crates/hypervisor/src/qemu/cmdline_generator.rs @@ -421,7 +421,7 @@ impl CcwSubChannel { /// /// # Returns /// - `Result<(), CcwError>`: Ok(()) if the device was removed - /// or an error if the device was not found + /// or an error if the device was not found #[allow(dead_code)] fn remove_device(&mut self, dev_id: &str) -> Result<(), CcwError> { if self.devices.remove(dev_id).is_some() {