diff mbox series

[v2,02/12] run-command: fix return value comment

Message ID a9b56eb8-1ef9-0e28-1ea2-85ccad7903d2@web.de (mailing list archive)
State New, archived
Headers show
Series run-command: remove run_command_v_*() | expand

Commit Message

René Scharfe Oct. 30, 2022, 11:45 a.m. UTC
483bbd4e4c (run-command: introduce child_process_init(), 2014-08-19) and
2d71608ec0 (run-command: factor out child_process_clear(), 2015-10-24)
added help texts about child_process_init() and child_process_clear()
without updating the immediately following documentation of return codes
that only applied to the preexisting functions.

4c4066d95d (run-command: move doc to run-command.h, 2019-11-17) started
to list the functions explicitly that this paragraph applies to, but
still wrongly included child_process_init() and child_process_clear().
Remove their names from that list.

Suggested-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: René Scharfe <l.s.r@web.de>
---
 run-command.h | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

--
2.38.1
diff mbox series

Patch

diff --git a/run-command.h b/run-command.h
index e3e1ea01ad..820fc25b02 100644
--- a/run-command.h
+++ b/run-command.h
@@ -150,9 +150,8 @@  struct child_process {
 }

 /**
- * The functions: child_process_init, start_command, finish_command,
- * run_command, run_command_v_opt, run_command_v_opt_cd_env, child_process_clear
- * do the following:
+ * The functions: start_command, finish_command, run_command,
+ * run_command_v_opt, run_command_v_opt_cd_env do the following:
  *
  * - If a system call failed, errno is set and -1 is returned. A diagnostic
  *   is printed.