summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-07 05:07:56 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-07 05:07:56 +0000
commit4d3c254ebe0eae7d97d4bd92efbcdc9d3f956c08 (patch)
tree288ca3b0da1322e9b81121aa8ae7494c8e035c8f
parent9722ed0e52aba80177960458d7d3deb3dde59c53 (diff)
Fix call-seq [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65591 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--re.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/re.c b/re.c
index 394fc46129..ecb3c253cd 100644
--- a/re.c
+++ b/re.c
@@ -2037,7 +2037,7 @@ match_aref(int argc, VALUE *argv, VALUE match)
/*
* call-seq:
*
- * mtch.values_at([index]*) -> array
+ * mtch.values_at(index, ...) -> array
*
* Uses each <i>index</i> to access the matching values, returning an array of
* the corresponding matches.