From bb6135c6827c2be565ed4728315aa8c259ada604 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 17 Nov 2025 10:40:23 +0100 Subject: [PATCH] Apply suggestion from @oopsbagel Co-authored-by: oopsbagel <99793478+oopsbagel@users.noreply.github.com> --- installer/src/lib.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/installer/src/lib.rs b/installer/src/lib.rs index b9558bd..df38892 100644 --- a/installer/src/lib.rs +++ b/installer/src/lib.rs @@ -285,15 +285,6 @@ async fn run(args: Args) -> Result<(), Error> { pub type OutputCallback = Box; /// Run the installer with CLI arguments and optional output callback -/// -/// # Arguments -/// * `args` - Command-line arguments (including program name as `args[0]`) -/// * `callback` - Optional function to receive stdout/stderr output -/// -/// # Returns -/// * `Ok(())` on success -/// * `Err(anyhow::Error)` on failure with full error context -/// /// # Example /// ```no_run /// use installer;