summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-22 16:25:06 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-22 16:25:06 +0000
commite5dd6a792d974d8d8d9f81c21102a4c1f527926b (patch)
tree56e51a3a8758cda4cf1de61d8a5ecd4e29302bca /process.c
parent5a980f59775b187753a36a2dfa690e60eed9b2d6 (diff)
rdoc update.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22557 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/process.c b/process.c
index be6097405c..1e61cb5c2a 100644
--- a/process.c
+++ b/process.c
@@ -1719,7 +1719,7 @@ rb_exec_arg_fixup(struct rb_exec_arg *e)
*
* commandline : command line string which is passed to a shell
* cmdname, arg1, ... : command name and one or more arguments (no shell)
- * [cmdname, argv0], arg1, ... : command name and arguments including argv[0] (no shell)
+ * [cmdname, argv0], arg1, ... : command name, argv[0] and zero or more arguments (no shell)
*
* If single string is given as the command,
* it is taken as a command line that is subject to shell expansion before being executed.
@@ -2893,7 +2893,7 @@ rb_spawn(int argc, VALUE *argv)
*
* commandline : command line string which is passed to a shell
* cmdname, arg1, ... : command name and one or more arguments (no shell)
- * [cmdname, argv0], arg1, ... : command name and arguments including argv[0] (no shell)
+ * [cmdname, argv0], arg1, ... : command name, argv[0] and zero or more arguments (no shell)
*
* system returns +true+ if the command gives zero exit status,
* +false+ for non zero exit status.