From ba59b32426912096588fa48b7fddabe58527125d Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Tue, 7 Mar 2023 11:13:33 +0000 Subject: [PATCH] Update the rustdoc for `run_command` Ref #15. --- src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index e0ca74b..e24567c 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -71,7 +71,7 @@ pub(crate) enum DownloadUnpackArchiveError { } /// A helper for running an external process using [`Command`], that checks the exit -/// status of the process was non-zero. +/// status of the process was non-zero. Stdout and stderr are streamed to the user. pub(crate) fn run_command(command: &mut Command) -> Result<(), CommandError> { command .status()