summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authorBurdette Lamar <BurdetteLamar@Yahoo.com>2022-02-18 06:46:04 -0600
committerGitHub <noreply@github.com>2022-02-18 06:46:04 -0600
commite9a2b30744a62268c66d6c17730ed96486d9783c (patch)
treefb36036ef21bdfc71104a527766a692f8a834b65 /object.c
parent542a38f619bea9fa7aa5a6be1449fc5f9b4d01e9 (diff)
Enhanced RDoc concerning command injection (#5537)
Clarifies security vulnerabilities for commands. Treats: Kernel.system Kernel.` (backtick) IO.popen IO.read IO.write IO.binread IO.binwrite IO.readlines IO.foreach
Notes
Notes: Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com>
Diffstat (limited to 'object.c')
-rw-r--r--object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/object.c b/object.c
index 33715a5714..f056767f13 100644
--- a/object.c
+++ b/object.c
@@ -4389,7 +4389,7 @@ InitVM_Object(void)
*
* === Subprocesses
*
- * - #`cmd`:: Returns the standard output of running +cmd+ in a subshell.
+ * - #`command`:: Returns the standard output of running +command+ in a subshell.
* - #exec:: Replaces current process with a new process.
* - #fork:: Forks the current process into two processes.
* - #spawn:: Executes the given command and returns its pid without waiting