aboutsummaryrefslogtreecommitdiffstats
path: root/re.c
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-29 16:38:00 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-29 16:38:00 +0000
commitb59109a84493f08ab1c8e5e8637597b5ac93270b (patch)
treee1d474dcde4ccf016a5882703212f889b65fa7c3 /re.c
parent40e50764f40f2020acae5c649fd02a1e86abef76 (diff)
downloadruby-b59109a84493f08ab1c8e5e8637597b5ac93270b.tar.gz
* re.c (last_match): Added note to the doc that last_match is local to current scope [ruby-core:25833]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25165 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
-rw-r--r--re.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/re.c b/re.c
index ec20c44a3d..74eacf1ad8 100644
--- a/re.c
+++ b/re.c
@@ -3392,6 +3392,9 @@ match_setter(VALUE val)
* <code>MatchData</code> object.
* <em>n</em> can be a string or symbol to reference a named capture.
*
+ * Note that the <code>last_match</code> is local to the scope
+ * of the method that did the pattern match.
+ *
* /c(.)t/ =~ 'cat' #=> 0
* Regexp.last_match #=> #<MatchData "cat" 1:"a">
* Regexp.last_match(0) #=> "cat"