From 8a28816625da90d50b587cdee81d19ad0f7847ca Mon Sep 17 00:00:00 2001 From: nagachika Date: Mon, 15 Apr 2013 14:04:09 +0000 Subject: [PATCH] merge revision(s) 40299: * string.c (String#gsub): fix typo in documentation git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@40309 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 2 +- version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/string.c b/string.c index b3893c9a95..7fb354b433 100644 --- a/string.c +++ b/string.c @@ -3977,7 +3977,7 @@ rb_str_gsub_bang(int argc, VALUE *argv, VALUE str) * \\\k, where n is a group name. If it is a * double-quoted string, both back-references must be preceded by an * additional backslash. However, within replacement the special match - * variables, such as &$, will not refer to the current match. + * variables, such as $&, will not refer to the current match. * * If the second argument is a Hash, and the matched text is one * of its keys, the corresponding value is the replacement string. diff --git a/version.h b/version.h index 588b3db9e0..6af1f48c83 100644 --- a/version.h +++ b/version.h @@ -1,6 +1,6 @@ #define RUBY_VERSION "2.0.0" #define RUBY_RELEASE_DATE "2013-04-15" -#define RUBY_PATCHLEVEL 134 +#define RUBY_PATCHLEVEL 135 #define RUBY_RELEASE_YEAR 2013 #define RUBY_RELEASE_MONTH 4