summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--array.c3
-rw-r--r--version.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/array.c b/array.c
index 1ae14edf3a..7ced6578a4 100644
--- a/array.c
+++ b/array.c
@@ -5486,7 +5486,8 @@ rb_ary_any_p(VALUE ary)
* This method is safe to use with mutable objects such as hashes, strings or
* other arrays:
*
- * Array.new(4) { Hash.new } #=> [{}, {}, {}, {}]
+ * Array.new(4) { Hash.new } #=> [{}, {}, {}, {}]
+ * Array.new(4) {|i| i.to_s } #=> ["0", "1", "2", "3"]
*
* This is also a quick way to build up multi-dimensional arrays:
*
diff --git a/version.h b/version.h
index 8d9840381e..2881bad957 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.2.7"
#define RUBY_RELEASE_DATE "2017-03-26"
-#define RUBY_PATCHLEVEL 461
+#define RUBY_PATCHLEVEL 462
#define RUBY_RELEASE_YEAR 2017
#define RUBY_RELEASE_MONTH 3