From f389b05f209411f143c0311908f801dc2d9db9bc Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Tue, 28 Jan 2025 16:39:49 +0000 Subject: [PATCH] dragonball: Fix doc formatting issue Clippy errors with: ``` error: doc list item missing indentation ``` which I think is because the Return is between two list items, so add a blank line to separate this into a separate paragraph Signed-off-by: stevenhorsman --- src/dragonball/src/vcpu/vcpu_manager.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dragonball/src/vcpu/vcpu_manager.rs b/src/dragonball/src/vcpu/vcpu_manager.rs index a7164eb032..2d6f915981 100644 --- a/src/dragonball/src/vcpu/vcpu_manager.rs +++ b/src/dragonball/src/vcpu/vcpu_manager.rs @@ -484,6 +484,7 @@ impl VcpuManager { /// Get available vcpus to create with target vcpu_count /// Argument: /// * vcpu_count: target vcpu_count online in VcpuManager. + /// /// Return: /// * return available vcpu ids to create vcpu . fn calculate_available_vcpus(&self, vcpu_count: u8) -> Vec {