Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/stdlib/subprocess/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ impl Processo {

}

use std::process::{Child, ChildStdin, ChildStdout, ChildStderr};
use std::process::{ChildStdin, ChildStdout, ChildStderr};

/// Representa um processo em execução com acesso a stdin, stdout e stderr.
pub struct PopenProcess {
Expand All @@ -194,7 +194,7 @@ pub fn popen_command(
cmd.args(args);
cmd.stdin(Stdio::piped());

/// Redireciona stdout/stderr para pipes conforme solicitado
// Redireciona stdout/stderr para pipes conforme solicitado
if options.capture_output {
cmd.stdout(Stdio::piped());
cmd.stderr(Stdio::piped());
Expand Down