aboutsummaryrefslogtreecommitdiffstats
path: root/ruby.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-19 10:45:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-19 10:45:04 +0000
commitd32a48ed6c6295f779b658f4759c2c5087f591ce (patch)
tree1be48c2fcf93596bea717d2853b837c9c129d6da /ruby.c
parentc1da4ef8d14863f9a3d47055ccead26455944f81 (diff)
downloadruby-d32a48ed6c6295f779b658f4759c2c5087f591ce.tar.gz
ruby.c: fix ARGV doc [ci skip]
* ruby.c (ruby_prog_init): [DOC] ARGV does not contain the name of the executable. [ruby-core:71561] [Bug #11711] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52670 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ruby.c b/ruby.c
index ee481f2a42..8a93921dbb 100644
--- a/ruby.c
+++ b/ruby.c
@@ -2035,8 +2035,7 @@ ruby_prog_init(void)
rb_define_module_function(rb_mProcess, "setproctitle", proc_setproctitle, 1);
/*
- * ARGV contains the command line arguments used to run ruby with the
- * first value containing the name of the executable.
+ * ARGV contains the command line arguments used to run ruby.
*
* A library like OptionParser can be used to process command-line
* arguments.