Skip to content

Commit

Permalink
Remove doc comment (#1502)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan authored Dec 4, 2024
1 parent f8ab967 commit 958c514
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions module/core/process_tools/src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,17 +223,17 @@ mod private
run( self.form() )
}

/// Executes an external process using the system shell.
///
/// This function abstracts over the differences between shells on Windows and Unix-based
/// systems, allowing for a unified interface to execute shell commands.
///
/// # Parameters:
/// - `exec_path`: The command line string to execute in the shell.
///
/// # Returns:
/// A `Result` containing a `Report` on success, which includes the command's output,
/// or an error if the command fails to execute or complete.
// Executes an external process using the system shell.
//
// This function abstracts over the differences between shells on Windows and Unix-based
// systems, allowing for a unified interface to execute shell commands.
//
// # Parameters:
// - `exec_path`: The command line string to execute in the shell.
//
// # Returns:
// A `Result` containing a `Report` on success, which includes the command's output,
// or an error if the command fails to execute or complete.
// pub fn run_with_shell( self, exec_path : &str, ) -> Result< Report, Report >
// {
// let ( program, args ) =
Expand Down

0 comments on commit 958c514

Please sign in to comment.