summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-12 17:10:14 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-12 17:10:14 +0000
commit7523a076c1ae2b3d7b55fcaa357c05ddb2c132a2 (patch)
treeec02feb0368e18160687b89ce732898c00dd9f30
parent8399d9d65cc10a859be00712c43fba144e6dfffe (diff)
merge revision(s) 57802:
string.c: [DOC] Fix a typo in String#dump [Fix GH-1531][ci skip] Author: Alex Semyonov <alex@semyonov.us> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@57933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--string.c2
-rw-r--r--version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/string.c b/string.c
index 312d82042e..6b6e750834 100644
--- a/string.c
+++ b/string.c
@@ -5717,7 +5717,7 @@ rb_str_inspect(VALUE str)
* Produces a version of +str+ with all non-printing characters replaced by
* <code>\nnn</code> notation and all special characters escaped.
*
- * "hello \n ''".dump #=> "\"hello \\n ''\"
+ * "hello \n ''".dump #=> "\"hello \\n ''\""
*/
VALUE
diff --git a/version.h b/version.h
index f106865e89..64db21261e 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.4.0"
#define RUBY_RELEASE_DATE "2017-03-13"
-#define RUBY_PATCHLEVEL 87
+#define RUBY_PATCHLEVEL 88
#define RUBY_RELEASE_YEAR 2017
#define RUBY_RELEASE_MONTH 3